Improve size of reminder dialog

This commit is contained in:
Miguel Jacq 2025-11-26 11:52:18 +11:00
parent 770fd0e9ee
commit c0a9c5be2b
Signed by: mig5
GPG key ID: 59B3F0C24135C6A9

View file

@ -1230,6 +1230,7 @@ class MainWindow(QMainWindow):
dlg = QDialog(self) dlg = QDialog(self)
dlg.setWindowTitle(strings._("reminder")) dlg.setWindowTitle(strings._("reminder"))
dlg.setModal(True) dlg.setModal(True)
dlg.setMinimumWidth(400)
layout = QVBoxLayout(dlg) layout = QVBoxLayout(dlg)
label = QLabel(text) label = QLabel(text)