diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-03-11 16:49:59 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-03-11 16:49:59 +0800 |
commit | 0e45a2a7eb9fac4287ff559106a7cd1f02d7b3c2 (patch) | |
tree | 233e5cd30a937d22e4bf0988b552862d594f5d8b /libempathy-gtk | |
parent | a0b17d8b76f2d9c0bfd25470a7ded2efa98e217c (diff) | |
download | gsoc2013-empathy-0e45a2a7eb9fac4287ff559106a7cd1f02d7b3c2.tar gsoc2013-empathy-0e45a2a7eb9fac4287ff559106a7cd1f02d7b3c2.tar.gz gsoc2013-empathy-0e45a2a7eb9fac4287ff559106a7cd1f02d7b3c2.tar.bz2 gsoc2013-empathy-0e45a2a7eb9fac4287ff559106a7cd1f02d7b3c2.tar.lz gsoc2013-empathy-0e45a2a7eb9fac4287ff559106a7cd1f02d7b3c2.tar.xz gsoc2013-empathy-0e45a2a7eb9fac4287ff559106a7cd1f02d7b3c2.tar.zst gsoc2013-empathy-0e45a2a7eb9fac4287ff559106a7cd1f02d7b3c2.zip |
By default display all the favorite rooms in the favorite room dialog. Fixes bug #521554 (Marco Barisione).
svn path=/trunk/; revision=735
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-chatrooms-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-chatrooms-window.c b/libempathy-gtk/empathy-chatrooms-window.c index 83d305212..7855f3cf3 100644 --- a/libempathy-gtk/empathy-chatrooms-window.c +++ b/libempathy-gtk/empathy-chatrooms-window.c @@ -154,10 +154,10 @@ empathy_chatrooms_window_show (GtkWindow *parent) empathy_account_chooser_set_filter (EMPATHY_ACCOUNT_CHOOSER (window->account_chooser), empathy_account_chooser_filter_is_connected, NULL); - empathy_account_chooser_set_account (EMPATHY_ACCOUNT_CHOOSER (window->account_chooser), NULL); g_object_set (window->account_chooser, "has-all-option", TRUE, NULL); + empathy_account_chooser_set_account (EMPATHY_ACCOUNT_CHOOSER (window->account_chooser), NULL); gtk_box_pack_start (GTK_BOX (window->hbox_account), window->account_chooser, |