aboutsummaryrefslogtreecommitdiffstats
path: root/bin/hypervideo-gui
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 /bin/hypervideo-gui
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 'bin/hypervideo-gui')
-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_())