1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-06-08 04:09:15 -04:00

clock: use precision minutes instead of seconds, unless needed

part of #716
This commit is contained in:
bbedward
2025-11-14 12:42:23 -05:00
parent b0ed007751
commit cc1fa89790
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -233,7 +233,7 @@ BasePill {
SystemClock {
id: systemClock
precision: SystemClock.Seconds
precision: SettingsData.showSeconds ? SystemClock.Seconds : SystemClock.Minutes
}
}
}
@@ -108,6 +108,6 @@ Card {
SystemClock {
id: systemClock
precision: SystemClock.Seconds
precision: SettingsData.showSeconds ? SystemClock.Seconds : SystemClock.Minutes
}
}