diff options
author | Vibha Yadav <yvibha@novell.com> | 2010-09-14 13:55:16 +0800 |
---|---|---|
committer | Bharath Acharya <abharath@novell.com> | 2010-09-14 13:55:16 +0800 |
commit | b82402ca8c3c502ef5f7fef605e62177949f8820 (patch) | |
tree | 37c8305551c3cf435f763b74c879dfbaa207575e /calendar/gui/print.c | |
parent | 70127d9cb8adbe948a34539eb8a9d330f293764e (diff) | |
download | gsoc2013-evolution-b82402ca8c3c502ef5f7fef605e62177949f8820.tar.gz gsoc2013-evolution-b82402ca8c3c502ef5f7fef605e62177949f8820.tar.zst gsoc2013-evolution-b82402ca8c3c502ef5f7fef605e62177949f8820.zip |
Bug #563471 - Printing tasks fails when grouped by category.
This works if Tasks/ Memos/ Contacts are grouped till level 1.
If grouping level is increased then some text would be missing.
Diffstat (limited to 'calendar/gui/print.c')
-rw-r--r-- | calendar/gui/print.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/calendar/gui/print.c b/calendar/gui/print.c index 5457f0a305..4396a88c03 100644 --- a/calendar/gui/print.c +++ b/calendar/gui/print.c @@ -2885,7 +2885,8 @@ print_title (GtkPrintContext *context, const gchar *text, gdouble page_width) cairo_move_to (cr, 0.0, 0.0); pango_cairo_show_layout (cr, layout); - + cairo_translate (cr, 0.0, 18); + cairo_save (cr); cairo_restore (cr); g_object_unref (layout); |