From f2bf3370498e4617d8bbb72d56090047ac1fd4a2 Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Mon, 1 Dec 2025 09:18:09 +1100 Subject: [PATCH] Also load the smaller time log dialog when Pomodoro timer stops --- bouquin/pomodoro_timer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bouquin/pomodoro_timer.py b/bouquin/pomodoro_timer.py index fd29742..e288977 100644 --- a/bouquin/pomodoro_timer.py +++ b/bouquin/pomodoro_timer.py @@ -137,7 +137,7 @@ class PomodoroManager: hours = 0.25 # Open time log dialog - dlg = TimeLogDialog(self._db, date_iso, self._parent) + dlg = TimeLogDialog(self._db, date_iso, self._parent, True) # Pre-fill the hours dlg.hours_spin.setValue(hours)