We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8418a37 + 86acbdf commit 98d0ae3Copy full SHA for 98d0ae3
src/classes/info.py
@@ -28,7 +28,7 @@
28
import os
29
from time import strftime
30
31
-VERSION = "3.2.0"
+VERSION = "3.2.0-dev"
32
MINIMUM_LIBOPENSHOT_VERSION = "0.3.3"
33
DATE = "20240619000000"
34
NAME = "openshot-qt"
src/themes/base.py
@@ -163,7 +163,8 @@ def apply_theme(self):
163
self.app.setStyleSheet(self.style_sheet)
164
165
# Hide main window status bar
166
- self.app.window.statusBar.hide()
+ if hasattr(self.app, "window") and hasattr(self.app.window, "statusBar"):
167
+ self.app.window.statusBar.hide()
168
169
from classes import info
170
from classes.logger import log
0 commit comments