diff options
author | Jim Ramsay <i.am@jimramsay.com> | 2010-04-28 22:46:15 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-05-19 05:26:38 +0800 |
commit | 3cda4f0d94c083199e89dae893ff5991ea3498c3 (patch) | |
tree | 977953dd122520793fce9648f7458979f0db50b7 /calendar/gui/dialogs | |
parent | 25a4f7170655c9e55faa074664e1743c59c9f361 (diff) | |
download | gsoc2013-evolution-3cda4f0d94c083199e89dae893ff5991ea3498c3.tar.gz gsoc2013-evolution-3cda4f0d94c083199e89dae893ff5991ea3498c3.tar.zst gsoc2013-evolution-3cda4f0d94c083199e89dae893ff5991ea3498c3.zip |
Bug 594153 (3/3) - Allow setting alarms on any meeting
By tying the attachment view "editable" action group to comp-editor
"individual" group, these add/remove actions are marked sensitive /
insensitive in sync with the existing "Insert" menu items which are
already in the "individual" group.
Though not introduced with the other symptoms of this bug
(0597b877c5bf4d21ac4048742ddf6b11e24877ba), the descreptency fixed
here is integrally related.
Diffstat (limited to 'calendar/gui/dialogs')
-rw-r--r-- | calendar/gui/dialogs/comp-editor.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c index 8ca35d862f..1ff43d34f1 100644 --- a/calendar/gui/dialogs/comp-editor.c +++ b/calendar/gui/dialogs/comp-editor.c @@ -36,6 +36,7 @@ #include <glib/gstdio.h> #include <gdk/gdkkeysyms.h> #include <e-util/e-util.h> +#include <e-util/e-binding.h> #include <e-util/e-dialog-utils.h> #include <e-util/e-util-private.h> #include <e-util/gconf-bridge.h> @@ -1577,6 +1578,7 @@ comp_editor_init (CompEditor *editor) GtkTargetList *target_list; GtkTargetEntry *targets; GtkActionGroup *action_group; + GtkActionGroup *action_group_2; GtkAction *action; GtkWidget *container; GtkWidget *widget; @@ -1798,6 +1800,13 @@ comp_editor_init (CompEditor *editor) gtk_window_set_type_hint ( GTK_WINDOW (editor), GDK_WINDOW_TYPE_HINT_NORMAL); + action_group = comp_editor_get_action_group (editor, "individual"); + action_group_2 = e_attachment_view_get_action_group (view, "editable"); + + e_binding_new ( + action_group, "sensitive", + action_group_2, "sensitive"); + /* Listen for attachment store changes. */ store = e_attachment_view_get_store (view); |