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 | |
parent | df07f02cae503795461bd231da20805853430da7 (diff) | |
download | gsoc2013-evolution-d76a0c81c7848e068ce0f995f748682ffd5959d7.tar gsoc2013-evolution-d76a0c81c7848e068ce0f995f748682ffd5959d7.tar.gz gsoc2013-evolution-d76a0c81c7848e068ce0f995f748682ffd5959d7.tar.bz2 gsoc2013-evolution-d76a0c81c7848e068ce0f995f748682ffd5959d7.tar.lz gsoc2013-evolution-d76a0c81c7848e068ce0f995f748682ffd5959d7.tar.xz gsoc2013-evolution-d76a0c81c7848e068ce0f995f748682ffd5959d7.tar.zst gsoc2013-evolution-d76a0c81c7848e068ce0f995f748682ffd5959d7.zip |
Desensitize the source seletor while delegating a meeting.
svn path=/trunk/; revision=29575
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/dialogs/event-page.c | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index b5fe6c8872..5dda2f835e 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +2005-06-23 Chenthill Palanisamy <pchenthill@novell.com> + + * gui/dialogs/event-page.c: (sensitize_widgets): + desensitize the source selector if a meeting is + delegated. + 2005-06-22 viren.l <viren@novell.com> Fixes #305590 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 |