diff options
| author | Loïc Guégan <loic.guegan@mailbox.org> | 2024-09-16 15:13:37 +0200 |
|---|---|---|
| committer | Loïc Guégan <loic.guegan@mailbox.org> | 2024-09-16 15:13:37 +0200 |
| commit | 2a05198441689b5f9c50dca3d0ca7b655ff990ca (patch) | |
| tree | a641cc89b9547ce9941cc509243fed26df8bd07d /tropical/qt/mainwindow.py | |
| parent | 8e9382394524e1b8b6d233f4cba6575b7fecce21 (diff) | |
Minor changes
Diffstat (limited to 'tropical/qt/mainwindow.py')
| -rw-r--r-- | tropical/qt/mainwindow.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tropical/qt/mainwindow.py b/tropical/qt/mainwindow.py index 48da072..d2a7b8d 100644 --- a/tropical/qt/mainwindow.py +++ b/tropical/qt/mainwindow.py @@ -7,6 +7,7 @@ from PyQt6.QtCore import Qt from .caldrawer import CalDrawer from .eventdrawer import EvtDrawer +from .createcalendar import CreateCalendar # Only needed for access to command line arguments import sys, os @@ -35,6 +36,9 @@ def StartApplication(version,calState): window = MainWindow(path, calState) window.setVersion(version) window.show() # IMPORTANT!!!!! Windows are hidden by default. + + d=CreateCalendar(path) + d.show() # Start the event loop. app.exec() |
