diff options
author | Devashish Sharma <dsharma@src.gnome.org> | 2006-06-16 14:18:41 +0800 |
---|---|---|
committer | Devashish Sharma <dsharma@src.gnome.org> | 2006-06-16 14:18:41 +0800 |
commit | d219c9c769d8f53ebba08d3cc209f99dca0880bd (patch) | |
tree | b2bfc32ac65b005e5c007d9f1f7815c7693b7fb9 /addressbook/gui | |
parent | a7426478fa6b489286552884eee1a270f529da42 (diff) | |
download | gsoc2013-evolution-d219c9c769d8f53ebba08d3cc209f99dca0880bd.tar.gz gsoc2013-evolution-d219c9c769d8f53ebba08d3cc209f99dca0880bd.tar.zst gsoc2013-evolution-d219c9c769d8f53ebba08d3cc209f99dca0880bd.zip |
Fix for Bug #317511
svn path=/trunk/; revision=32158
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/contact-list-editor/e-contact-list-editor.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/addressbook/gui/contact-list-editor/e-contact-list-editor.c b/addressbook/gui/contact-list-editor/e-contact-list-editor.c index 21dd8da9e7..5674ffb7db 100644 --- a/addressbook/gui/contact-list-editor/e-contact-list-editor.c +++ b/addressbook/gui/contact-list-editor/e-contact-list-editor.c @@ -484,7 +484,11 @@ close_cb (GtkWidget *widget, EContactListEditor *cle) static void save_and_close_cb (GtkWidget *widget, EContactListEditor *cle) { - save_contact (cle, TRUE); + EABEditor *editor = EAB_EDITOR (cle); + if (! (cle->editable && cle->allows_contact_lists)) + eab_editor_close(editor); + else + save_contact (cle, TRUE); } static void @@ -903,7 +907,8 @@ set_editable (EContactListEditor *editor) gtk_widget_set_sensitive (editor->add_button, editor->editable && editor->allows_contact_lists); gtk_widget_set_sensitive (editor->remove_button, editor->editable && editor->allows_contact_lists); gtk_widget_set_sensitive (editor->select_button, editor->editable && editor->allows_contact_lists); - gtk_widget_set_sensitive (editor->table, editor->editable && editor->allows_contact_lists); + gtk_widget_set_sensitive (editor->cancel_button, editor->editable && editor->allows_contact_lists); + gtk_widget_set_sensitive (editor->visible_addrs_checkbutton, editor->editable && editor->allows_contact_lists); } /* Callback used when the editor is destroyed */ |