Added option for an analog style clock on the calendar screen.

This commit is contained in:
Corey Woodworth
2025-10-24 23:34:58 -04:00
parent 4df3ffef05
commit 1846c7af2e
9 changed files with 195 additions and 44 deletions
+7
View File
@@ -124,6 +124,13 @@ ColumnLayout {
checked: Settings.data.location.showCalendarEvents
onToggled: checked => Settings.data.location.showCalendarEvents = checked
}
NToggle {
label: I18n.tr("settings.location.date-time.use-analog.label")
description: I18n.tr("settings.location.date-time.use-analog.description")
checked: Settings.data.location.analogClockInCalendar
onToggled: checked => Settings.data.location.analogClockInCalendar = checked
}
}
NDivider {