Merge pull request #543 from lonerOrz/feature/calendar-event-toggle

feat: Add toggle to enable or disable calendar event display
This commit is contained in:
Lemmy
2025-10-21 09:53:53 -04:00
committed by GitHub
11 changed files with 46 additions and 3 deletions
+7
View File
@@ -117,6 +117,13 @@ ColumnLayout {
checked: Settings.data.location.showWeekNumberInCalendar
onToggled: checked => Settings.data.location.showWeekNumberInCalendar = checked
}
NToggle {
label: I18n.tr("settings.location.date-time.show-events.label")
description: I18n.tr("settings.location.date-time.show-events.description")
checked: Settings.data.location.showCalendarEvents
onToggled: checked => Settings.data.location.showCalendarEvents = checked
}
}
NDivider {