aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--hypervideo_gui/main_ui.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/hypervideo_gui/main_ui.py b/hypervideo_gui/main_ui.py
index 474b6a7..aff6ce2 100644
--- a/hypervideo_gui/main_ui.py
+++ b/hypervideo_gui/main_ui.py
@@ -462,14 +462,15 @@ def debugging(var):
def ui_style_sheet(self):
''' Style UI '''
- return """
+ self.mystyle = """
QStatusBar
{
font-family: DejaVu Sans;
font-size: 8pt;
color: #666666;
}
-QProgressBar:horizontal {
+QProgressBar:horizontal
+{
border: 1px solid gray;
text-align: top;
padding: 1px;
@@ -492,3 +493,5 @@ border-radius: 3px;
border: 1px solid black;
}
"""
+ style = self.mystyle
+ return style