1
0
Fork 0
mirror of https://github.com/Athemis/PyDSF.git synced 2025-04-19 03:19:13 +00:00

Migrated to PyQT5; Added option to reset data list; Added progress indicator

This commit is contained in:
Alexander Minges 2015-01-30 15:00:16 +01:00
parent 6268862334
commit 926fb01502
7 changed files with 275 additions and 268 deletions

View file

@ -1,12 +1,15 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
from PyQt4 import QtCore, QtGui
from PyQt5 import QtWidgets
from ui.mainwindow import MainWindow
if __name__ == "__main__":
import sys
app = QtGui.QApplication(sys.argv)
app = QtWidgets.QApplication(sys.argv)
ui = MainWindow()
ui.show()
sys.exit(app.exec_())