diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-09-06 15:26:50 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-09-15 20:05:09 +0800 |
commit | 051beb6158c98cd2aa6c7219fc3c94a7eb3ae7b0 (patch) | |
tree | 315be437bcfa00f02e8bb5256faf51bfb0b34590 | |
parent | 7bd81c09f38bc0d4672e0674b00851be3fce7b39 (diff) | |
download | gsoc2013-empathy-051beb6158c98cd2aa6c7219fc3c94a7eb3ae7b0.tar gsoc2013-empathy-051beb6158c98cd2aa6c7219fc3c94a7eb3ae7b0.tar.gz gsoc2013-empathy-051beb6158c98cd2aa6c7219fc3c94a7eb3ae7b0.tar.bz2 gsoc2013-empathy-051beb6158c98cd2aa6c7219fc3c94a7eb3ae7b0.tar.lz gsoc2013-empathy-051beb6158c98cd2aa6c7219fc3c94a7eb3ae7b0.tar.xz gsoc2013-empathy-051beb6158c98cd2aa6c7219fc3c94a7eb3ae7b0.tar.zst gsoc2013-empathy-051beb6158c98cd2aa6c7219fc3c94a7eb3ae7b0.zip |
Disable contact and contact list search when disconnected
https://bugzilla.gnome.org/show_bug.cgi?id=655270
-rw-r--r-- | src/empathy-main-window.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/empathy-main-window.c b/src/empathy-main-window.c index 1463e8ed9..679f000e0 100644 --- a/src/empathy-main-window.c +++ b/src/empathy-main-window.c @@ -1984,9 +1984,11 @@ main_window_connection_items_setup (EmpathyMainWindow *window, "room_join_favorites", "chat_new_message", "chat_new_call", + "chat_search_contacts", "chat_add_contact", "edit_personal_information", - "edit_blocked_contacts" + "edit_blocked_contacts", + "edit_search_contacts" }; for (i = 0, list = NULL; i < G_N_ELEMENTS (actions_connected); i++) { |