summaryrefslogtreecommitdiff
path: root/tropical/qt/mainwindow.py
diff options
context:
space:
mode:
Diffstat (limited to 'tropical/qt/mainwindow.py')
-rw-r--r--tropical/qt/mainwindow.py4
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()