aboutsummaryrefslogtreecommitdiffstats
path: root/script.py
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2019-12-15 16:14:23 -0500
committerJesús <heckyel@hyperbola.info>2019-12-15 16:14:23 -0500
commit4607e3df6a166a47c4b00cab88c55a6104003b6e (patch)
tree87a130cf1df00eead33b4cd967e3624441c84f9b /script.py
parenta65a6e08e708a23f7aec40a2ae3e24aab23de4be (diff)
downloadhypervideo-gui-4607e3df6a166a47c4b00cab88c55a6104003b6e.tar.lz
hypervideo-gui-4607e3df6a166a47c4b00cab88c55a6104003b6e.tar.xz
hypervideo-gui-4607e3df6a166a47c4b00cab88c55a6104003b6e.zip
refactor source code and code cleanup
Diffstat (limited to 'script.py')
-rw-r--r--script.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/script.py b/script.py
index 9bc382f..d87c8c5 100644
--- a/script.py
+++ b/script.py
@@ -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_())