diff options
author | Chandni Verma <chandniverma2112@gmail.com> | 2011-01-03 23:55:43 +0800 |
---|---|---|
committer | Chandni Verma <chandniverma2112@gmail.com> | 2011-01-03 23:55:43 +0800 |
commit | 98b73f3620f3b2f94e7d2ce3cfd2cd07cc637d13 (patch) | |
tree | 8f99ad647fc286c54b3afd7707a490376c5b5ac8 /src/empathy-chatrooms-window.c | |
parent | ceff90e7c349418ed74c3bc2346fdb9270d534c0 (diff) | |
download | gsoc2013-empathy-98b73f3620f3b2f94e7d2ce3cfd2cd07cc637d13.tar gsoc2013-empathy-98b73f3620f3b2f94e7d2ce3cfd2cd07cc637d13.tar.gz gsoc2013-empathy-98b73f3620f3b2f94e7d2ce3cfd2cd07cc637d13.tar.bz2 gsoc2013-empathy-98b73f3620f3b2f94e7d2ce3cfd2cd07cc637d13.tar.lz gsoc2013-empathy-98b73f3620f3b2f94e7d2ce3cfd2cd07cc637d13.tar.xz gsoc2013-empathy-98b73f3620f3b2f94e7d2ce3cfd2cd07cc637d13.tar.zst gsoc2013-empathy-98b73f3620f3b2f94e7d2ce3cfd2cd07cc637d13.zip |
Skip accounts which don't support rooms in "Manage Favorites" dialog
Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=603027
Diffstat (limited to 'src/empathy-chatrooms-window.c')
-rw-r--r-- | src/empathy-chatrooms-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-chatrooms-window.c b/src/empathy-chatrooms-window.c index 35e3e8b9d..1b00548f5 100644 --- a/src/empathy-chatrooms-window.c +++ b/src/empathy-chatrooms-window.c @@ -139,7 +139,7 @@ empathy_chatrooms_window_show (GtkWindow *parent) /* Account chooser for chat rooms */ window->account_chooser = empathy_account_chooser_new (); empathy_account_chooser_set_filter (EMPATHY_ACCOUNT_CHOOSER (window->account_chooser), - empathy_account_chooser_filter_is_connected, + empathy_account_chooser_filter_supports_chatrooms, NULL); g_object_set (window->account_chooser, "has-all-option", TRUE, |