diff options
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 7 | ||||
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 214b87c0df..dca138f8ae 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,10 @@ +2002-05-13 Christopher James Lahey <clahey@ximian.com> + + * gui/contact-editor/e-contact-editor.c (enable_writable_fields): + Enable the dropdown widgets even if the contact is not editable so + that you can view any email address, phone number, or postal + address on read only contacts. + 2002-05-10 Christopher James Lahey <clahey@ximian.com> * gui/component/select-names/Evolution-Addressbook-SelectNames.idl: diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c index 58d3a32be6..fd0f14ddb5 100644 --- a/addressbook/gui/contact-editor/e-contact-editor.c +++ b/addressbook/gui/contact-editor/e-contact-editor.c @@ -2369,7 +2369,7 @@ enable_writable_fields(EContactEditor *editor) GtkWidget *widget = g_hash_table_lookup (dropdown_hash, field); if (widget) { - enable_widget (widget, editor->editable); + enable_widget (widget, TRUE); } else { /* if it's not a field that's handled by the |