diff options
| author | tassaron | 2017-08-26 21:23:44 -0400 |
|---|---|---|
| committer | tassaron | 2017-08-26 21:23:44 -0400 |
| commit | 85d3b779d07ad92b0f540ea52185777c3c3f5e48 (patch) | |
| tree | dd193fb213412cf022a718848e90bbff671892e4 /src/main.py | |
| parent | 62e2ef18a3a31c15f88a96f07b2bc587808f5ad5 (diff) | |
fixed too-large Color sizes, fixed a redoing bug, rm pointless things
and now Ctrl+Alt+Shift+A gives a bunch of debug info
Diffstat (limited to 'src/main.py')
| -rw-r--r-- | src/main.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/main.py b/src/main.py index 6d18af3..f767de1 100644 --- a/src/main.py +++ b/src/main.py @@ -36,8 +36,6 @@ def main(): elif mode == 'GUI': from gui.mainwindow import MainWindow - import atexit - import signal window = uic.loadUi(os.path.join(wd, "gui", "mainwindow.ui")) # window.adjustSize() @@ -56,9 +54,6 @@ def main(): log.debug("Finished creating main window") window.raise_() - signal.signal(signal.SIGINT, main.cleanUp) - atexit.register(main.cleanUp) - sys.exit(app.exec_()) if __name__ == "__main__": |
