diff options
author | Christopher James Lahey <clahey@ximian.com> | 2002-05-14 05:48:53 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2002-05-14 05:48:53 +0800 |
commit | 3da2b4bbbd72826c20c1568a792174cb15f7badb (patch) | |
tree | 5588bcc61145ff03708bdb259899ce6ca1909e84 /addressbook/gui | |
parent | b05542ec2dede738afe1e4dfdb583c822b98a09e (diff) | |
download | gsoc2013-evolution-3da2b4bbbd72826c20c1568a792174cb15f7badb.tar.gz gsoc2013-evolution-3da2b4bbbd72826c20c1568a792174cb15f7badb.tar.zst gsoc2013-evolution-3da2b4bbbd72826c20c1568a792174cb15f7badb.zip |
Enable the dropdown widgets even if the contact is not editable so that
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.
svn path=/trunk/; revision=16767
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |