aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/event-page.c
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchen@src.gnome.org>2007-08-17 18:31:57 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2007-08-17 18:31:57 +0800
commit7291d8e13c913f14993758971a8e6e62e4908b12 (patch)
treeccf58b53fc932040b2a89361d160c32d0563d1b8 /calendar/gui/dialogs/event-page.c
parent1581c7ff3e21325e8485758acde1590ca725c8cc (diff)
downloadgsoc2013-evolution-7291d8e13c913f14993758971a8e6e62e4908b12.tar
gsoc2013-evolution-7291d8e13c913f14993758971a8e6e62e4908b12.tar.gz
gsoc2013-evolution-7291d8e13c913f14993758971a8e6e62e4908b12.tar.bz2
gsoc2013-evolution-7291d8e13c913f14993758971a8e6e62e4908b12.tar.lz
gsoc2013-evolution-7291d8e13c913f14993758971a8e6e62e4908b12.tar.xz
gsoc2013-evolution-7291d8e13c913f14993758971a8e6e62e4908b12.tar.zst
gsoc2013-evolution-7291d8e13c913f14993758971a8e6e62e4908b12.zip
Fixes #420492
Fixes #420492 svn path=/trunk/; revision=34024
Diffstat (limited to 'calendar/gui/dialogs/event-page.c')
-rw-r--r--calendar/gui/dialogs/event-page.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/calendar/gui/dialogs/event-page.c b/calendar/gui/dialogs/event-page.c
index d9c16556e3..0c52fdcdbf 100644
--- a/calendar/gui/dialogs/event-page.c
+++ b/calendar/gui/dialogs/event-page.c
@@ -1161,10 +1161,12 @@ event_page_fill_widgets (CompEditorPage *page, ECalComponent *comp)
e_cal_component_get_transparency (comp, &transparency);
switch (transparency) {
case E_CAL_COMPONENT_TRANSP_TRANSPARENT:
+ priv->show_time_as_busy = FALSE;
set_busy_time_menu (epage, FALSE);
break;
default:
+ priv->show_time_as_busy = TRUE;
set_busy_time_menu (epage, TRUE);
break;
}