Added session log dialog window

This commit is contained in:
Veronica K. B. Olsen
2019-10-20 14:40:59 +02:00
parent 6638c5187e
commit 323013bbaf
4 changed files with 65 additions and 2 deletions
+6
View File
@@ -199,6 +199,12 @@ class GuiMainMenu(QMenuBar):
menuItem.triggered.connect(self.theParent.exportProjectDialog)
self.projMenu.addAction(menuItem)
# Project > Session Log
menuItem = QAction("Session Log", self)
menuItem.setStatusTip("Show the session log")
menuItem.triggered.connect(self.theParent.showTimeLineDialog)
self.projMenu.addAction(menuItem)
# Project > Separator
self.projMenu.addSeparator()