Event details page improvements, calendar item update source.

This commit is contained in:
Burak Kaan Köse
2026-02-12 18:04:29 +01:00
parent 96dcdc8e03
commit b01fa4e4ba
26 changed files with 471 additions and 102 deletions
@@ -225,6 +225,8 @@ public partial class AccountCalendarStateService : ObservableRecipient,
existingCalendar.BackgroundColorHex = accountCalendar.BackgroundColorHex;
existingCalendar.IsExtended = accountCalendar.IsExtended;
existingCalendar.IsPrimary = accountCalendar.IsPrimary;
existingCalendar.IsSynchronizationEnabled = accountCalendar.IsSynchronizationEnabled;
existingCalendar.DefaultShowAs = accountCalendar.DefaultShowAs;
}
});
}
@@ -241,6 +243,8 @@ public partial class AccountCalendarStateService : ObservableRecipient,
existingCalendar.BackgroundColorHex = accountCalendar.BackgroundColorHex;
existingCalendar.IsExtended = accountCalendar.IsExtended;
existingCalendar.IsPrimary = accountCalendar.IsPrimary;
existingCalendar.IsSynchronizationEnabled = accountCalendar.IsSynchronizationEnabled;
existingCalendar.DefaultShowAs = accountCalendar.DefaultShowAs;
}
}
}