diff options
Diffstat (limited to 'modules/addressbook')
-rw-r--r-- | modules/addressbook/e-book-shell-view-actions.c | 8 | ||||
-rw-r--r-- | modules/addressbook/e-book-shell-view-private.h | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/modules/addressbook/e-book-shell-view-actions.c b/modules/addressbook/e-book-shell-view-actions.c index c2195e52de..5daf7e51df 100644 --- a/modules/addressbook/e-book-shell-view-actions.c +++ b/modules/addressbook/e-book-shell-view-actions.c @@ -1007,6 +1007,14 @@ e_book_shell_view_actions_init (EBookShellView *book_shell_view) g_signal_connect ( ACTION (SEARCH_EXECUTE), "activate", G_CALLBACK (action_search_execute_cb), book_shell_view); + + e_binding_new ( + G_OBJECT (ACTION (CONTACT_PREVIEW)), "active", + G_OBJECT (ACTION (CONTACT_VIEW_CLASSIC)), "sensitive"); + + e_binding_new ( + G_OBJECT (ACTION (CONTACT_PREVIEW)), "active", + G_OBJECT (ACTION (CONTACT_VIEW_VERTICAL)), "sensitive"); } void diff --git a/modules/addressbook/e-book-shell-view-private.h b/modules/addressbook/e-book-shell-view-private.h index b49677680f..31165e49b3 100644 --- a/modules/addressbook/e-book-shell-view-private.h +++ b/modules/addressbook/e-book-shell-view-private.h @@ -32,6 +32,7 @@ #include <libedataserver/e-sexp.h> #include <libedataserverui/e-source-selector.h> +#include "e-util/e-binding.h" #include "e-util/gconf-bridge.h" #include "shell/e-shell-content.h" #include "shell/e-shell-sidebar.h" |