diff options
author | Carlos Martín Nieto <carlos@cmartin.tk> | 2010-10-09 05:33:42 +0800 |
---|---|---|
committer | Carlos Martín Nieto <carlos@cmartin.tk> | 2010-10-09 07:37:29 +0800 |
commit | 837e35eb6d74c708e53cb8ba0a733ceffa266dd8 (patch) | |
tree | 7fefed4ce2dfd410e49a2b682294d106564842ee | |
parent | fa77498dfb702bbe8dbff28e43f424751daa8cb4 (diff) | |
download | gsoc2013-evolution-837e35eb6d74c708e53cb8ba0a733ceffa266dd8.tar.gz gsoc2013-evolution-837e35eb6d74c708e53cb8ba0a733ceffa266dd8.tar.zst gsoc2013-evolution-837e35eb6d74c708e53cb8ba0a733ceffa266dd8.zip |
Add a missing week number offset
-rw-r--r-- | calendar/gui/print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/print.c b/calendar/gui/print.c index 47556a26aa..cfc84e8d4b 100644 --- a/calendar/gui/print.c +++ b/calendar/gui/print.c @@ -2766,7 +2766,7 @@ print_month_view (GtkPrintContext *context, GnomeCalendar *gcal, time_t date) print_month_small (context, gcal, time_add_month_with_zone (date, -1, zone), - 8, 4, width / 7 + 20, HEADER_HEIGHT + 4, + 8, 4, 8 + SMALL_MONTH_WIDTH + week_numbers_inc, HEADER_HEIGHT + 4, DATE_MONTH | DATE_YEAR, 0, 0, FALSE); /* Print the month, e.g. 'May 2001'. */ |