diff options
Diffstat (limited to 'modules/bar/components')
| -rw-r--r-- | modules/bar/components/Clock.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/bar/components/Clock.qml b/modules/bar/components/Clock.qml index a384f51..f045f9d 100644 --- a/modules/bar/components/Clock.qml +++ b/modules/bar/components/Clock.qml @@ -25,7 +25,7 @@ Column { anchors.horizontalCenter: parent.horizontalCenter horizontalAlignment: StyledText.AlignHCenter - text: Time.format("hh\nmm") + text: Time.format(Config.services.useTwelveHourClock ? "hh\nmm\nA" : "hh\nmm") font.pointSize: Appearance.font.size.smaller font.family: Appearance.font.family.mono color: root.colour |