diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-06-23 20:51:32 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-06-23 20:51:32 +0800 |
commit | d76a0c81c7848e068ce0f995f748682ffd5959d7 (patch) | |
tree | 95b1a9ee533b1406e15cbb7e5bf1ed498a9a4dd4 /calendar/gui | |
parent | df07f02cae503795461bd231da20805853430da7 (diff) | |
download | gsoc2013-evolution-d76a0c81c7848e068ce0f995f748682ffd5959d7.tar.gz gsoc2013-evolution-d76a0c81c7848e068ce0f995f748682ffd5959d7.tar.zst gsoc2013-evolution-d76a0c81c7848e068ce0f995f748682ffd5959d7.zip |
Desensitize the source seletor while delegating a meeting.
svn path=/trunk/; revision=29575
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/dialogs/event-page.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/calendar/gui/dialogs/event-page.c b/calendar/gui/dialogs/event-page.c index 829739fd7b..28a4f831cf 100644 --- a/calendar/gui/dialogs/event-page.c +++ b/calendar/gui/dialogs/event-page.c @@ -639,8 +639,10 @@ sensitize_widgets (EventPage *epage) gtk_widget_set_sensitive (priv->sendoptions_button, !read_only && sens); gtk_entry_set_editable (GTK_ENTRY (priv->categories), !read_only && sens); - if (COMP_EDITOR_PAGE (epage)->flags & COMP_EDITOR_PAGE_DELEGATE) + if (COMP_EDITOR_PAGE (epage)->flags & COMP_EDITOR_PAGE_DELEGATE) { gtk_widget_set_sensitive (priv->sendoptions_button, TRUE); + gtk_widget_set_sensitive (priv->source_selector, FALSE); + } } void |