aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/control-factory.c
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/gui/control-factory.c')
-rw-r--r--calendar/gui/control-factory.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/calendar/gui/control-factory.c b/calendar/gui/control-factory.c
index ac04829ee9..71c918fb14 100644
--- a/calendar/gui/control-factory.c
+++ b/calendar/gui/control-factory.c
@@ -159,15 +159,17 @@ set_prop (BonoboPropertyBag *bag,
view = GNOME_CAL_WORK_WEEK_VIEW;
else if (!strcmp (string, "month"))
view = GNOME_CAL_MONTH_VIEW;
+ else if (!strcmp (string, "list"))
+ view = GNOME_CAL_LIST_VIEW;
else if (!strcmp (string, "day"))
view = GNOME_CAL_DAY_VIEW;
else
- view = calendar_config_get_default_view ();
+ view = GNOME_CAL_DAY_VIEW;
/* This doesn't actually work, because the GalView
* comes along and resets the view. FIXME.
*/
- gnome_calendar_set_view (gcal, view, FALSE, TRUE);
+ gnome_calendar_set_view (gcal, view);
break;
default: