aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/ChangeLog8
-rw-r--r--addressbook/gui/component/select-names/e-select-names.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index e6e3edd6a1..31c8e616f0 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,11 @@
+2004-08-18 Sivaiah Nallagatla <snallagatla@novell.com>
+
+ * gui/component/select-names/e-select-names.c (e_select_names_init) :
+ select names dialog can not be modal as password dialogs can come up while
+ user is in this dialog for address books which require authentication
+ like groupwise and LDAP
+ FIxes #63257
+
2004-08-11 Hans Petter Jansson <hpj@ximian.com>
* gui/contact-editor/e-contact-editor.c (app_delete_event_cb):
diff --git a/addressbook/gui/component/select-names/e-select-names.c b/addressbook/gui/component/select-names/e-select-names.c
index 5ea291b32e..3cdf807ef4 100644
--- a/addressbook/gui/component/select-names/e-select-names.c
+++ b/addressbook/gui/component/select-names/e-select-names.c
@@ -498,7 +498,7 @@ e_select_names_init (ESelectNames *e_select_names)
GTK_STOCK_OK, GTK_RESPONSE_OK,
NULL);
- gtk_window_set_modal (GTK_WINDOW (e_select_names), TRUE);
+ gtk_window_set_modal (GTK_WINDOW (e_select_names), FALSE);
gtk_window_set_default_size (GTK_WINDOW (e_select_names), 472, 512);
gtk_window_set_title (GTK_WINDOW (e_select_names), _("Select Contacts from Address Book"));
gtk_window_set_resizable (GTK_WINDOW (e_select_names), TRUE);