diff options
| author | tassaron | 2017-08-14 18:41:45 -0400 |
|---|---|---|
| committer | tassaron | 2017-08-14 18:41:45 -0400 |
| commit | 733c005eeaf5d3ff15e0f60d320f5c03472bad60 (patch) | |
| tree | 32176c185ca09a8f35d195fac257ca31313b84bb /src/main.py | |
| parent | a327bec4e42cc572fb84e559025e888a4a20edd3 (diff) | |
undoable removeComponent action
Diffstat (limited to 'src/main.py')
| -rw-r--r-- | src/main.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.py b/src/main.py index 3a6fbe7..c1278da 100644 --- a/src/main.py +++ b/src/main.py @@ -35,11 +35,11 @@ def main(): log.debug("Finished creating command object") elif mode == 'GUI': - from mainwindow import MainWindow + from gui.mainwindow import MainWindow import atexit import signal - window = uic.loadUi(os.path.join(wd, "mainwindow.ui")) + window = uic.loadUi(os.path.join(wd, "gui", "mainwindow.ui")) # window.adjustSize() desc = QtWidgets.QDesktopWidget() dpi = desc.physicalDpiX() |
