diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2026-04-03 03:54:18 +0200 |
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2026-04-03 03:54:18 +0200 |
| commit | 0ab0e2caee934513ff6113a33520079006eafae1 (patch) | |
| tree | ffc7b2bd8941f52a7e5d48ee9f66f5e451e35c5a /.config/noctalia/plugins/timer/Panel.qml | |
| parent | 7e0ac6ebfe40e1637e8534a5fcdf5992d525a32e (diff) | |
noctalia: Update timer plugin
Diffstat (limited to '.config/noctalia/plugins/timer/Panel.qml')
| -rw-r--r-- | .config/noctalia/plugins/timer/Panel.qml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.config/noctalia/plugins/timer/Panel.qml b/.config/noctalia/plugins/timer/Panel.qml index b79389e..ca50644 100644 --- a/.config/noctalia/plugins/timer/Panel.qml +++ b/.config/noctalia/plugins/timer/Panel.qml @@ -333,7 +333,7 @@ Item { } else if (timerDisplayItem.isEditing && totalSeconds === 0 && timerDisplayItem.inputBuffer !== "") { _cachedText = formatTimeFromDigits(timerDisplayItem.inputBuffer); } else if (timerDisplayItem.isEditing && totalSeconds === 0) { - _cachedText = formatTime(0, 0); + _cachedText = formatTime(remainingSeconds, 0); } else { _cachedText = formatTime(remainingSeconds, totalSeconds); } @@ -590,4 +590,3 @@ Item { } } } - |