mirror of
https://github.com/KeksPirates/SoftwareManager.git
synced 2026-08-04 09:59:41 +02:00
Refactor asset paths for settings icons in the GUI and reorganize main.py structure
This commit is contained in:
@@ -1,3 +1,19 @@
|
||||
from core.gui import run_gui
|
||||
from core.gui import run_gui as gui
|
||||
from core.gui import MainWindow
|
||||
from PySide6 import QtWidgets
|
||||
import sys
|
||||
|
||||
run_gui()
|
||||
|
||||
|
||||
|
||||
|
||||
def run_gui():
|
||||
app = QtWidgets.QApplication([])
|
||||
widget = MainWindow()
|
||||
widget.show()
|
||||
sys.exit(app.exec())
|
||||
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
run_gui()
|
||||
|
||||
Reference in New Issue
Block a user