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 | |
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
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | libempathy-gtk/empathy-accounts-dialog.c | 3 |
2 files changed, 8 insertions, 0 deletions
@@ -1,5 +1,10 @@ 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). + +2007-07-26 Xavier Claessens <xclaesse@gmail.com> + * libempathy/empathy-idle.c: Fix problems when NM is not running. Fixes bug #460419. 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 |