diff options
author | Davyd Madeley <davyd@madeley.id.au> | 2009-04-11 00:54:14 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-04-11 00:54:14 +0800 |
commit | 7af30db3852cc58068938599384b9443f394d949 (patch) | |
tree | 9d4b8cc25984dc0d19601db2bdae561097994d4c /libempathy-gtk/empathy-presence-chooser.c | |
parent | 58ba038d38067dd91ed2d9fe57164b939a6256a1 (diff) | |
download | gsoc2013-empathy-7af30db3852cc58068938599384b9443f394d949.tar gsoc2013-empathy-7af30db3852cc58068938599384b9443f394d949.tar.gz gsoc2013-empathy-7af30db3852cc58068938599384b9443f394d949.tar.bz2 gsoc2013-empathy-7af30db3852cc58068938599384b9443f394d949.tar.lz gsoc2013-empathy-7af30db3852cc58068938599384b9443f394d949.tar.xz gsoc2013-empathy-7af30db3852cc58068938599384b9443f394d949.tar.zst gsoc2013-empathy-7af30db3852cc58068938599384b9443f394d949.zip |
Ensure ::changed is connected on both the entry and the combo
From: Davyd Madeley <davyd@madeley.id.au>
svn path=/trunk/; revision=2786
Diffstat (limited to 'libempathy-gtk/empathy-presence-chooser.c')
-rw-r--r-- | libempathy-gtk/empathy-presence-chooser.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-presence-chooser.c b/libempathy-gtk/empathy-presence-chooser.c index 98a609f57..8826ed63d 100644 --- a/libempathy-gtk/empathy-presence-chooser.c +++ b/libempathy-gtk/empathy-presence-chooser.c @@ -501,6 +501,8 @@ empathy_presence_chooser_init (EmpathyPresenceChooser *chooser) G_CALLBACK (popup_shown_cb), NULL); g_signal_connect (chooser, "changed", G_CALLBACK (changed_cb), NULL); + g_signal_connect_swapped (entry, "changed", + G_CALLBACK (changed_cb), chooser); priv->idle = empathy_idle_dup_singleton (); presence_chooser_presence_changed_cb (chooser); |