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:
parent
6268862334
commit
926fb01502
7 changed files with 275 additions and 268 deletions
7
main.py
7
main.py
|
@ -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_())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue