1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-06 05:25:41 -05: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

View File

@@ -233,7 +233,7 @@ BasePill {
SystemClock {
id: systemClock
precision: SystemClock.Seconds
precision: SettingsData.showSeconds ? SystemClock.Seconds : SystemClock.Minutes
}
}
}

View File

@@ -108,6 +108,6 @@ Card {
SystemClock {
id: systemClock
precision: SystemClock.Seconds
precision: SettingsData.showSeconds ? SystemClock.Seconds : SystemClock.Minutes
}
}