diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-07-06 21:31:28 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-07-06 21:31:28 +0800 |
commit | 98605352768234681b8ddd74a26b7efd75023b4d (patch) | |
tree | 120e66c8a9f5ab0dc702fbaa10b117c251a4ae06 | |
parent | ef3e5ba8988b7059995b89478bc1f1f3778add6f (diff) | |
download | gsoc2013-evolution-98605352768234681b8ddd74a26b7efd75023b4d.tar.gz gsoc2013-evolution-98605352768234681b8ddd74a26b7efd75023b4d.tar.zst gsoc2013-evolution-98605352768234681b8ddd74a26b7efd75023b4d.zip |
Enable alarm even if we are not an organizer.
svn path=/trunk/; revision=29660
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/dialogs/event-page.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 398c5166a5..f380cb62f6 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2005-07-06 Chenthill Palanisamy <pchenthill@novell.com> + + * gui/dialogs/event-page.c: (sensitize_widgets): Enable alarms + even if we are not organizer. + 2005-07-06 Sankar P <psankar@novell.com> * gui/dialogs/comp-editor.c (response_cb): diff --git a/calendar/gui/dialogs/event-page.c b/calendar/gui/dialogs/event-page.c index 28a4f831cf..3d1ee328f2 100644 --- a/calendar/gui/dialogs/event-page.c +++ b/calendar/gui/dialogs/event-page.c @@ -628,7 +628,7 @@ sensitize_widgets (EventPage *epage) gtk_widget_set_sensitive (priv->description, !read_only && sens); gtk_widget_set_sensitive (priv->classification, !read_only && sens); gtk_widget_set_sensitive (priv->show_time_as_busy, !read_only && sens); - gtk_widget_set_sensitive (priv->alarm, !read_only && sens); + gtk_widget_set_sensitive (priv->alarm, !read_only); gtk_widget_set_sensitive (priv->alarm_time, !read_only && !custom && alarm); gtk_widget_set_sensitive (priv->alarm_custom, alarm); if (custom) |