diff options
author | Hans Petter Jansson <hpj@ximian.com> | 2004-07-03 02:32:18 +0800 |
---|---|---|
committer | Hans Petter <hansp@src.gnome.org> | 2004-07-03 02:32:18 +0800 |
commit | c1a9d4e25e6f45b78fde8a020d458da5fec7ea4f (patch) | |
tree | f2b9018d5c707503d45b6aa91649a0dce5a81b40 /addressbook | |
parent | a0a05fc37685d20377b398cbf4e5a60770aee4b2 (diff) | |
download | gsoc2013-evolution-c1a9d4e25e6f45b78fde8a020d458da5fec7ea4f.tar.gz gsoc2013-evolution-c1a9d4e25e6f45b78fde8a020d458da5fec7ea4f.tar.zst gsoc2013-evolution-c1a9d4e25e6f45b78fde8a020d458da5fec7ea4f.zip |
Set the source option menu sensitivity here.
2004-07-02 Hans Petter Jansson <hpj@ximian.com>
* gui/contact-list-editor/e-contact-list-editor.c
(command_state_changed): Set the source option menu sensitivity here.
svn path=/trunk/; revision=26569
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/gui/contact-list-editor/e-contact-list-editor.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index bdbd66e4ec..6702bffdd5 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,8 @@ +2004-07-02 Hans Petter Jansson <hpj@ximian.com> + + * gui/contact-list-editor/e-contact-list-editor.c + (command_state_changed): Set the source option menu sensitivity here. + 2004-06-30 Chris Toshok <toshok@ximian.com> * gui/contact-editor/e-contact-editor.c 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 b5dca4ef74..88980afed6 100644 --- a/addressbook/gui/contact-list-editor/e-contact-list-editor.c +++ b/addressbook/gui/contact-list-editor/e-contact-list-editor.c @@ -949,6 +949,8 @@ command_state_changed (EContactListEditor *editor) /* FIXME set the ok button to ok */ gtk_widget_set_sensitive (editor->ok_button, valid); + gtk_widget_set_sensitive (editor->source_menu, editor->is_new_list); + gtk_widget_set_sensitive (glade_xml_get_widget (editor->gui, "source-label"), editor->is_new_list); } static void |