Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vmj-qt
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
vmj-qt
Commits
16227330
Commit
16227330
authored
Jul 02, 2010
by
Luci Stanescu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added shortcut for grabbing the focus of the search box
parent
59b2c363
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
mainwindow.py
blink/mainwindow.py
+5
-1
No files found.
blink/mainwindow.py
View file @
16227330
...
...
@@ -7,7 +7,7 @@ __all__ = ['MainWindow']
from
PyQt4
import
uic
from
PyQt4.QtCore
import
Qt
from
PyQt4.QtGui
import
QBrush
,
QColor
,
QFontMetrics
,
QPainter
,
QPen
,
QPixmap
,
QStyle
,
QStyleOptionComboBox
,
QStyleOptionFrameV2
from
PyQt4.QtGui
import
QBrush
,
QColor
,
QFontMetrics
,
QPainter
,
QPen
,
QPixmap
,
QS
hortcut
,
QS
tyle
,
QStyleOptionComboBox
,
QStyleOptionFrameV2
from
application.notification
import
IObserver
,
NotificationCenter
from
application.python.util
import
Null
...
...
@@ -102,6 +102,10 @@ class MainWindow(base_class, ui_class):
self
.
conference_button
.
breakConference
.
connect
(
self
.
_SH_BreakConference
)
self
.
mute_button
.
clicked
.
connect
(
self
.
_SH_MuteButtonClicked
)
self
.
search_box
.
shortcut
=
QShortcut
(
self
.
search_box
)
self
.
search_box
.
shortcut
.
setKey
(
'CTRL+F'
)
self
.
search_box
.
shortcut
.
activated
.
connect
(
self
.
search_box
.
setFocus
)
self
.
idle_status_index
=
0
notification_center
=
NotificationCenter
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment