From 4daa61756ed717379c6300c74d7dafdfe937ea1e Mon Sep 17 00:00:00 2001 From: "Lubomir I. Ivanov" Date: Tue, 28 Aug 2012 01:37:56 +0300 Subject: [PATCH] make the font size the same when printing on win32/linux Setting the cairo transformation units (..?) to GTK_UNIT_POINTS makes the font size the same on windows as on linux, when printing. Otherwise the text is unreadable ie way too small. It now looks like http://i47.tinypic.com/154ks2d.png Signed-off-by: Lubomir I. Ivanov Signed-off-by: Linus Torvalds --- print.c | 1 + 1 file changed, 1 insertion(+) diff --git a/print.c b/print.c index d8373e5..5083f42 100644 --- a/print.c +++ b/print.c @@ -300,6 +300,7 @@ void do_print(void) repaint_dive(); print = gtk_print_operation_new(); + gtk_print_operation_set_unit(print, GTK_UNIT_POINTS); if (settings != NULL) gtk_print_operation_set_print_settings(print, settings); g_signal_connect(print, "create-custom-widget", G_CALLBACK(print_dialog), NULL); -- 2.43.0