From 2a05198441689b5f9c50dca3d0ca7b655ff990ca Mon Sep 17 00:00:00 2001 From: Loïc Guégan Date: Mon, 16 Sep 2024 15:13:37 +0200 Subject: Minor changes --- tropical/qt/mainwindow.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tropical/qt/mainwindow.py') 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() -- cgit v1.2.3