diff options
author | Sivaiah Nallagatla <snallagatla@novell.com> | 2004-08-19 12:36:47 +0800 |
---|---|---|
committer | Sivaiah Nallagatla <siva@src.gnome.org> | 2004-08-19 12:36:47 +0800 |
commit | dc290b1f61187ed35e44613c945b6c194ab4e834 (patch) | |
tree | 4bd7b09f62aa4c7d3ffcac7cab4f4c5c2121bdb2 /addressbook | |
parent | cca0246c0bf9ca3224c539c7a0677abea5bd4b6e (diff) | |
download | gsoc2013-evolution-dc290b1f61187ed35e44613c945b6c194ab4e834.tar.gz gsoc2013-evolution-dc290b1f61187ed35e44613c945b6c194ab4e834.tar.zst gsoc2013-evolution-dc290b1f61187ed35e44613c945b6c194ab4e834.zip |
select names dialog can not be modal as password dialogs can come up while
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
svn path=/trunk/; revision=26971
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 8 | ||||
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names.c | 2 |
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); |