diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | demos/gtk-demo/printing.c | 3 |
2 files changed, 10 insertions, 0 deletions
@@ -1,3 +1,10 @@ +2008-02-22 Dominic Lachowicz <domlachowicz@gmail.com> + + * demos/gtk-demo/printing.c (do_printing): gtk-demo printing gives + wrong results on win32 because it doesn't set the printing units, + which affect the transformation of the cairo context + (#347125, Erik van Pienbroek) + 2008-02-22 Tor Lillqvist <tml@novell.com> * tests/pixbuf-init.c: Add file missing from SVN, from the tarball. diff --git a/demos/gtk-demo/printing.c b/demos/gtk-demo/printing.c index 33b4b445f8..be1e066ca8 100644 --- a/demos/gtk-demo/printing.c +++ b/demos/gtk-demo/printing.c @@ -161,6 +161,9 @@ do_printing (GtkWidget *do_widget) g_signal_connect (G_OBJECT (operation), "end-print", G_CALLBACK (end_print), data); + gtk_print_operation_set_use_full_page (operation, FALSE); + gtk_print_operation_set_unit (operation, GTK_UNIT_POINTS); + gtk_print_operation_run (operation, GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG, GTK_WINDOW (do_widget), &error); g_object_unref (operation); |