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
75b4c90c
Commit
75b4c90c
authored
Jun 24, 2010
by
Dan Pascu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adjust search box height based on theme
parent
c5ad22aa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
mainwindow.py
blink/mainwindow.py
+9
-1
No files found.
blink/mainwindow.py
View file @
75b4c90c
...
...
@@ -7,7 +7,7 @@ __all__ = ['MainWindow']
from
PyQt4
import
uic
from
PyQt4.QtCore
import
Qt
from
PyQt4.QtGui
import
QBrush
,
QColor
,
QPainter
,
QPen
,
QPixmap
from
PyQt4.QtGui
import
QBrush
,
QColor
,
QPainter
,
QPen
,
QPixmap
,
QStyle
,
QStyleOptionFrameV2
from
application.notification
import
IObserver
,
NotificationCenter
from
application.python.util
import
Null
...
...
@@ -36,6 +36,14 @@ class MainWindow(base_class, ui_class):
with
Resources
.
directory
:
self
.
setupUi
(
self
)
# adjust search box height depending on theme as the value set in designer isn't suited for all themes
search_box
=
self
.
search_box
option
=
QStyleOptionFrameV2
()
search_box
.
initStyleOption
(
option
)
frame_width
=
search_box
.
style
()
.
pixelMetric
(
QStyle
.
PM_DefaultFrameWidth
,
option
,
search_box
)
if
frame_width
<
4
:
search_box
.
setMinimumHeight
(
20
+
2
*
frame_width
)
self
.
setWindowTitle
(
'Blink'
)
self
.
setWindowIconText
(
'Blink'
)
...
...
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