aboutsummaryrefslogtreecommitdiff
path: root/src/gui/calendar.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/calendar.rs')
-rw-r--r--src/gui/calendar.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/calendar.rs b/src/gui/calendar.rs
index cad2465..547c087 100644
--- a/src/gui/calendar.rs
+++ b/src/gui/calendar.rs
@@ -181,9 +181,9 @@ fn day_events(date: NaiveDate, tx: Sender<Msg>, events: Vec<&Event>) -> gtk::Box
gesture.set_state(gtk::EventSequenceState::Claimed);
if n == 2 {
if event.repetition.is_some() {
- update::send(tx.clone(), Msg::ShowRepetitionDialog { date, event: event.clone() });
+ update::send(tx.clone(), Msg::ShowRepetitionDialog { date, event_id: event.id });
} else {
- update::send(tx.clone(), Msg::ShowUpdateForm { event: event.clone() });
+ update::send(tx.clone(), Msg::ShowUpdateForm { event_id: event.id });
}
}
}),