diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-08-13 09:13:11 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-08-13 09:13:11 +0800 |
commit | 6466c2f6d51414464a0aa32e31a151ce6b148d33 (patch) | |
tree | 95b0525c0f6653d29dbe70e59d9d50d5733d8bdb /calendar/gui/month-view.c | |
parent | d4e52567181dd4fa1bfcf928ce1151928d25ded2 (diff) | |
download | gsoc2013-evolution-6466c2f6d51414464a0aa32e31a151ce6b148d33.tar gsoc2013-evolution-6466c2f6d51414464a0aa32e31a151ce6b148d33.tar.gz gsoc2013-evolution-6466c2f6d51414464a0aa32e31a151ce6b148d33.tar.bz2 gsoc2013-evolution-6466c2f6d51414464a0aa32e31a151ce6b148d33.tar.lz gsoc2013-evolution-6466c2f6d51414464a0aa32e31a151ce6b148d33.tar.xz gsoc2013-evolution-6466c2f6d51414464a0aa32e31a151ce6b148d33.tar.zst gsoc2013-evolution-6466c2f6d51414464a0aa32e31a151ce6b148d33.zip |
More work on the month view - Federico
svn path=/trunk/; revision=312
Diffstat (limited to 'calendar/gui/month-view.c')
-rw-r--r-- | calendar/gui/month-view.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/calendar/gui/month-view.c b/calendar/gui/month-view.c index 18e96cbf26..4b96aa4bcb 100644 --- a/calendar/gui/month-view.c +++ b/calendar/gui/month-view.c @@ -65,6 +65,9 @@ month_view_init (MonthView *mv) "y", 0.0, "anchor", GTK_ANCHOR_NW, "day_anchor", GTK_ANCHOR_NE, + + "start_on_monday", TRUE, + NULL); } @@ -111,10 +114,8 @@ month_view_size_allocate (GtkWidget *widget, GtkAllocation *allocation) (* GTK_WIDGET_CLASS (parent_class)->size_allocate) (widget, allocation); gnome_canvas_set_scroll_region (GNOME_CANVAS (mv), 0, 0, allocation->width, allocation->height); -#if 0 gnome_canvas_item_set (mv->mitem, "width", (double) allocation->width, "height", (double) allocation->height, NULL); -#endif } |