I#1336 - Calendar: Preserve time when creating events with double-click ][

Correct overlooked runtime warning about missing GtkAction, because
it had been renamed.

Related to https://gitlab.gnome.org/GNOME/evolution/-/issues/1336
This commit is contained in:
Milan Crha
2021-01-20 14:18:37 +01:00
parent 76c26c34e8
commit 846072aeeb
2 changed files with 3 additions and 3 deletions

View File

@ -102,8 +102,8 @@
E_SHELL_WINDOW_ACTION ((window), "event-reply-all")
#define E_SHELL_WINDOW_ACTION_EVENT_OCCURRENCE_MOVABLE(window) \
E_SHELL_WINDOW_ACTION ((window), "event-occurrence-movable")
#define E_SHELL_WINDOW_ACTION_EVENT_MEETING_NEW(window) \
E_SHELL_WINDOW_ACTION ((window), "event-meeting-new")
#define E_SHELL_WINDOW_ACTION_EVENT_POPUP_MEETING_NEW(window) \
E_SHELL_WINDOW_ACTION ((window), "event-popup-meeting-new")
/* Memo Pad Actions */
#define E_SHELL_WINDOW_ACTION_CALENDAR_MEMOPAD_FORWARD(window) \

View File

@ -491,7 +491,7 @@ cal_shell_view_update_actions (EShellView *shell_view)
sensitive = single_event_selected && selection_is_meeting;
gtk_action_set_sensitive (action, sensitive);
action = ACTION (EVENT_MEETING_NEW);
action = ACTION (EVENT_POPUP_MEETING_NEW);
gtk_action_set_visible (action, has_mail_identity);
gtk_action_set_sensitive (ACTION (CALENDAR_GO_BACK), !is_list_view);