aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/hypervideo-gui4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/hypervideo-gui b/bin/hypervideo-gui
index e9c2fcf..3a98a04 100644
--- a/bin/hypervideo-gui
+++ b/bin/hypervideo-gui
@@ -7,6 +7,6 @@ from hypervideo_gui.main_ui import *
# Exec APP
if __name__ == '__main__':
APP = QApplication(sys.argv)
- APP.setStyle('Fusion')
- ex = App()
+ MAINWIN = MainWindow()
+ MAINWIN.show()
sys.exit(APP.exec_())