summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-10-13 23:43:56 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-10-13 23:44:44 +1100
commit40f98fb0592bfca0eaa26acfc48127d30e2c0908 (patch)
tree66d6f47fbd058f37f8acec83e42b00b7d2e1b123 /modules
parentbar/workspaces: special ws icon config (#785) (diff)
downloadcaelestia-shell-40f98fb0592bfca0eaa26acfc48127d30e2c0908.tar.gz
caelestia-shell-40f98fb0592bfca0eaa26acfc48127d30e2c0908.tar.bz2
caelestia-shell-40f98fb0592bfca0eaa26acfc48127d30e2c0908.zip
utilities/record: fix recording list months
Fixes #782
Diffstat (limited to 'modules')
-rw-r--r--modules/utilities/cards/RecordingList.qml1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/utilities/cards/RecordingList.qml b/modules/utilities/cards/RecordingList.qml
index ab7537e..5d71328 100644
--- a/modules/utilities/cards/RecordingList.qml
+++ b/modules/utilities/cards/RecordingList.qml
@@ -92,6 +92,7 @@ ColumnLayout {
if (!matches)
return time;
const date = new Date(...matches.slice(1));
+ date.setMonth(date.getMonth() - 1); // Woe (months start from 0)
return qsTr("Recording at %1").arg(Qt.formatDateTime(date, Qt.locale()));
}
color: Colours.palette.m3onSurfaceVariant