improvements for about dialog

This commit is contained in:
2024-03-21 19:18:50 +01:00
parent 9010d75ff8
commit 165b6e0a63
5 changed files with 148 additions and 92 deletions

View File

@@ -23,6 +23,7 @@ class AboutDialog(QDialog):
self.setWindowTitle(_("About KrowLog"))
self.setModal(True)
self.setMinimumWidth(650)
self.setFixedHeight(300)
self.layout = QVBoxLayout(self)
@@ -61,8 +62,8 @@ class AboutDialog(QDialog):
result = QWidget()
result.layout = QVBoxLayout(result)
label = Label("{0}<br>{1}<br>{2}".format(
_("Log file viewer"),
_("(c) 2022-2023 Andreas Huber"),
_("KrowLog is a viewer for log files of arbitrary size."),
_("(c) 2022-2024 Andreas Huber"),
_("License: LGPL v3")
))
result.layout.addWidget(label)