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

feat: Use HH:MM format for 24hr clock system only

This commit is contained in:
Vantesh
2025-08-26 03:07:36 +03:00
parent 6785a1b854
commit bb81378b20
5 changed files with 5 additions and 5 deletions

View File

@@ -310,7 +310,7 @@ Singleton {
if (use24Hour) {
return date.toLocaleTimeString(Qt.locale(), "HH:mm")
} else {
return date.toLocaleTimeString(Qt.locale(), "hh:mm AP")
return date.toLocaleTimeString(Qt.locale(), "h:mm AP")
}
}