fix bug where timer doesn't reset correctly

This commit is contained in:
jjanzen 2025-03-10 14:53:56 -05:00
parent 7c5dacf357
commit fc4e2de02d

View file

@ -28,13 +28,13 @@
:group 'pomodoro) :group 'pomodoro)
;;;###autoload ;;;###autoload
(defcustom pomodoro-work-time (* 25 60) (defcustom pomodoro-work-time (* 25 1)
"The length of a pomodoro work session in seconds" "The length of a pomodoro work session in seconds"
:type '(integer) :type '(integer)
:group 'pomodoro) :group 'pomodoro)
;;;###autoload ;;;###autoload
(defcustom pomodoro-break-time (* 5 60) (defcustom pomodoro-break-time (* 5 1)
"The length of a pomodoro break session in seconds" "The length of a pomodoro break session in seconds"
:type '(integer) :type '(integer)
:group 'pomodoro) :group 'pomodoro)
@ -86,8 +86,8 @@
(setq symbol "") (setq symbol "")
(setq max-time 0))) (setq max-time 0)))
(if (>= delta max-time) (if (>= delta max-time)
(setq delta max-time) (setq delta max-time))
(setq delta (- max-time delta))) (setq delta (- max-time delta))
;; Get the time in minutes and seconds ;; Get the time in minutes and seconds
(setq minutes (/ delta 60)) (setq minutes (/ delta 60))