1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-26 14:32:52 -05:00

bar ipc change from show to reveal

This commit is contained in:
bbedward
2025-09-04 15:53:54 -04:00
parent e64124cce3
commit 3c3cffd7b6
6 changed files with 17 additions and 23 deletions

View File

@@ -119,11 +119,8 @@ Item {
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: parent.top
text: {
if (SettingsData.use24HourClock) {
return systemClock.date.toLocaleTimeString(Qt.locale(), "HH:mm")
} else {
return systemClock.date.toLocaleTimeString(Qt.locale(), "h:mm AP")
}
const format = SettingsData.use24HourClock ? "HH:mm" : "h:mm AP"
return systemClock.date.toLocaleTimeString(Qt.locale(), format)
}
font.pixelSize: 120
font.weight: Font.Light