diff options
author | Joris | 2020-05-10 20:24:24 +0200 |
---|---|---|
committer | Joris | 2020-05-10 20:24:24 +0200 |
commit | 8a6e10d401eea8db0947f8c4b309b8a6256f9748 (patch) | |
tree | 6e2dc6956ce7825f0f1b6c3ed6f0b4171fe9c274 /src/main.py | |
parent | 3e1415c738facb8b0274adb50ae65f218fd59c9b (diff) |
Add tags panel
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 e791196..c4ff4e9 100644 --- a/src/main.py +++ b/src/main.py @@ -11,11 +11,6 @@ args = arguments.parser().parse_args() database = db.init.init(args.database if args.database != None else 'database') app = QtWidgets.QApplication(sys.argv) -# # Allows to catch Ctrl-C event -# timer = QtCore.QTimer() -# timer.timeout.connect(lambda: None) -# timer.start(100) - window = gui.window.get(database) window.show() res = app.exec_() |