- 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

@@ -222,7 +222,7 @@ class AppTextEditor(QtWidgets.QWidget):
if path:
file = QtCore.QFile(path)
if file.open(QtCore.QIODevice.ReadOnly):
if file.open(QtCore.QIODevice.OpenModeFlag.ReadOnly):
stream = QtCore.QTextStream(file)
self.code_edited = stream.readAll()
self.code_editor.setPlainText(self.code_edited)