- added a new menu entry in the View menu to show the application log file where even the fatal crashes are logged

- fixed an issue due of porting to Qt6
This commit is contained in:
Marius Stanciu
2021-08-22 17:21:08 +03:00
committed by Marius Stanciu
parent 4ffecc0bf8
commit dd39657e4f
7 changed files with 26 additions and 3 deletions

View File

@@ -573,6 +573,11 @@ class MainGUI(QtWidgets.QMainWindow):
QtGui.QIcon(self.app.resource_location + '/hud_32.png'),
'%s\t%s' % (_("Toggle HUD"), _('Shift+H')))
self.menuview.addSeparator()
self.menuview_show_log = self.menuview.addAction(
QtGui.QIcon(self.app.resource_location + '/log32.png'),
'%s\t%s' % (_("Log"), ''))
# ########################################################################
# ########################## Objects # ###################################
# ########################################################################