diff --git a/CHANGELOG.md b/CHANGELOG.md index bc9ce34..595c060 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ * Try to address Noto Sans font issue that works for both numbers and checkbox/bullets. * Update icon * Update French translations + * Improve size of flashing reminder dialog # 0.5 diff --git a/bouquin/main_window.py b/bouquin/main_window.py index 3fb1195..9f04347 100644 --- a/bouquin/main_window.py +++ b/bouquin/main_window.py @@ -1230,6 +1230,7 @@ class MainWindow(QMainWindow): dlg = QDialog(self) dlg.setWindowTitle(strings._("reminder")) dlg.setModal(True) + dlg.setMinimumWidth(400) layout = QVBoxLayout(dlg) label = QLabel(text) diff --git a/pyproject.toml b/pyproject.toml index fbea2d7..6f13468 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bouquin" -version = "0.5" +version = "0.5.1" description = "Bouquin is a simple, opinionated notebook application written in Python, PyQt and SQLCipher." authors = ["Miguel Jacq "] readme = "README.md" diff --git a/screenshots/screenshot.png b/screenshots/screenshot.png index 7106d76..a375c45 100644 Binary files a/screenshots/screenshot.png and b/screenshots/screenshot.png differ