diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2007-07-26 20:30:53 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-07-26 20:30:53 +0800 |
commit | 7907c710253ba70cf1b3f475a1f7be79d0e3f546 (patch) | |
tree | e098639e7651469e4633a447e26b81935ffc3362 /libempathy-gtk | |
parent | a1a519c76085cc402d015486fa654bfe7550de1a (diff) | |
download | gsoc2013-empathy-7907c710253ba70cf1b3f475a1f7be79d0e3f546.tar gsoc2013-empathy-7907c710253ba70cf1b3f475a1f7be79d0e3f546.tar.gz gsoc2013-empathy-7907c710253ba70cf1b3f475a1f7be79d0e3f546.tar.bz2 gsoc2013-empathy-7907c710253ba70cf1b3f475a1f7be79d0e3f546.tar.lz gsoc2013-empathy-7907c710253ba70cf1b3f475a1f7be79d0e3f546.tar.xz gsoc2013-empathy-7907c710253ba70cf1b3f475a1f7be79d0e3f546.tar.zst gsoc2013-empathy-7907c710253ba70cf1b3f475a1f7be79d0e3f546.zip |
add contact frame is not hidden after cancelling. Fixes bug #458997
2007-07-26 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-accounts-dialog.c: add contact frame is not
hidden after cancelling. Fixes bug #458997 (Frederic Peters).
svn path=/trunk/; revision=196
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-accounts-dialog.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-accounts-dialog.c b/libempathy-gtk/empathy-accounts-dialog.c index cc88b73a7..888b14c4d 100644 --- a/libempathy-gtk/empathy-accounts-dialog.c +++ b/libempathy-gtk/empathy-accounts-dialog.c @@ -553,6 +553,9 @@ accounts_dialog_model_selection_changed (GtkTreeSelection *selection, if (account) { g_object_unref (account); } + + /* insure new account frame is hidden when a row is selected*/ + gtk_widget_hide (dialog->frame_new_account); } static void |