fix(clock): respect monthBeforeDay setting in vertical clock date display

This commit is contained in:
Kevin Diaz
2025-09-18 19:57:09 -04:00
parent 458ef3c0d5
commit 2b8b97ab3b
+6 -8
View File
@@ -157,14 +157,12 @@ Rectangle {
if (verticalMode) {
// Compact mode: date section (last 2 lines)
switch (index) {
case 0:
// Day
return now.getDate().toString().padStart(2, '0')
case 1:
// Month
return (now.getMonth() + 1).toString().padStart(2, '0')
default:
return ""
case 0:
return monthBeforeDay ? (now.getMonth() + 1).toString().padStart(2, '0') : now.getDate().toString().padStart(2, '0')
case 1:
return monthBeforeDay ? now.getDate().toString().padStart(2, '0') : (now.getMonth() + 1).toString().padStart(2, '0')
default:
return ""
}
}
return ""