diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-08-30 12:42:02 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-08-30 12:42:02 +0800 |
commit | 3843185df1e71e14e4f2e5d34aca34724090b496 (patch) | |
tree | 78c0b9336c798f106d25fceca4fd8a6be5f11301 /addressbook | |
parent | e0c501b7018f12d37b10e32923f95b7a01c7982c (diff) | |
download | gsoc2013-evolution-3843185df1e71e14e4f2e5d34aca34724090b496.tar gsoc2013-evolution-3843185df1e71e14e4f2e5d34aca34724090b496.tar.gz gsoc2013-evolution-3843185df1e71e14e4f2e5d34aca34724090b496.tar.bz2 gsoc2013-evolution-3843185df1e71e14e4f2e5d34aca34724090b496.tar.lz gsoc2013-evolution-3843185df1e71e14e4f2e5d34aca34724090b496.tar.xz gsoc2013-evolution-3843185df1e71e14e4f2e5d34aca34724090b496.tar.zst gsoc2013-evolution-3843185df1e71e14e4f2e5d34aca34724090b496.zip |
Preferences window awesomeness.
svn path=/branches/kill-bonobo/; revision=36215
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/gui/component/e-book-shell-view.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/addressbook/gui/component/e-book-shell-view.c b/addressbook/gui/component/e-book-shell-view.c index 13098ab84a..1a5c38940d 100644 --- a/addressbook/gui/component/e-book-shell-view.c +++ b/addressbook/gui/component/e-book-shell-view.c @@ -268,15 +268,16 @@ book_shell_view_get_status_widget (EShellView *shell_view) } static void -book_shell_view_changed (EShellView *shell_view, - gboolean visible) +book_shell_view_changed (EShellView *shell_view) { EBookShellViewPrivate *priv; GtkActionGroup *action_group; + gboolean visible; priv = E_BOOK_SHELL_VIEW_GET_PRIVATE (shell_view); action_group = priv->contact_actions; + visible = e_shell_view_is_selected (shell_view); gtk_action_group_set_visible (action_group, visible); } |