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 /calendar/gui | |
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
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/dialogs/event-page.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |