diff options
author | Carlos Martín Nieto <carlos@cmartin.tk> | 2010-10-09 07:44:47 +0800 |
---|---|---|
committer | Carlos Martín Nieto <carlos@cmartin.tk> | 2010-10-09 08:07:40 +0800 |
commit | 49bff67ed2db38c9f73346eec27e0080c7d67435 (patch) | |
tree | 01876c2ca1e5a3368493c08d49934f49866b177c /calendar | |
parent | 837e35eb6d74c708e53cb8ba0a733ceffa266dd8 (diff) | |
download | gsoc2013-evolution-49bff67ed2db38c9f73346eec27e0080c7d67435.tar gsoc2013-evolution-49bff67ed2db38c9f73346eec27e0080c7d67435.tar.gz gsoc2013-evolution-49bff67ed2db38c9f73346eec27e0080c7d67435.tar.bz2 gsoc2013-evolution-49bff67ed2db38c9f73346eec27e0080c7d67435.tar.lz gsoc2013-evolution-49bff67ed2db38c9f73346eec27e0080c7d67435.tar.xz gsoc2013-evolution-49bff67ed2db38c9f73346eec27e0080c7d67435.tar.zst gsoc2013-evolution-49bff67ed2db38c9f73346eec27e0080c7d67435.zip |
Day view print: Put day name in its box
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/gui/print.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/calendar/gui/print.c b/calendar/gui/print.c index cfc84e8d4b..ebbaead1a0 100644 --- a/calendar/gui/print.c +++ b/calendar/gui/print.c @@ -2237,8 +2237,9 @@ print_day_view (GtkPrintContext *context, GnomeCalendar *gcal, time_t date) format_date (date, DATE_DAYNAME, buf, 100); print_text_size_bold (context, buf, PANGO_ALIGN_LEFT, - 4, todo, 32, - 32 + 18); + 4, todo, + HEADER_HEIGHT + 6, + HEADER_HEIGHT + 6 + 18); date = time_add_day_with_zone (date, 1, zone); } |