fix am pm matching

This commit is contained in:
end-4
2025-10-11 11:18:32 +02:00
parent 7ae53ac364
commit 8e7b012c4c
@@ -22,7 +22,7 @@ Column {
delegate: StyledText { delegate: StyledText {
required property string modelData required property string modelData
property bool hourMarksEnabled: Config.options.background.clock.cookie.hourMarks property bool hourMarksEnabled: Config.options.background.clock.cookie.hourMarks
property bool isAmPm: !!modelData.match(/am|pm/i) property bool isAmPm: !modelData.match(/\d{2}/i)
property real numberSizeWithoutGlow: isAmPm ? 26 : 68 property real numberSizeWithoutGlow: isAmPm ? 26 : 68
property real numberSizeWithGlow: isAmPm ? 10 : 40 property real numberSizeWithGlow: isAmPm ? 10 : 40
property real numberSize: root.isEnabled ? (hourMarksEnabled ? numberSizeWithGlow : numberSizeWithoutGlow) : 100 // open/close animation property real numberSize: root.isEnabled ? (hourMarksEnabled ? numberSizeWithGlow : numberSizeWithoutGlow) : 100 // open/close animation