From a77f209f23e78da6e63495b0ef873e28a371e084 Mon Sep 17 00:00:00 2001 From: Adrian Johnson Date: Sat, 21 Nov 2009 20:08:17 +1030 Subject: [PATCH] Default to hard margins not available unless the print backend explicitly provides them. --- gtk/gtkprintbackend.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/gtk/gtkprintbackend.c b/gtk/gtkprintbackend.c index 4b8b0dedf..648a47248 100644 --- a/gtk/gtkprintbackend.c +++ b/gtk/gtkprintbackend.c @@ -501,12 +501,7 @@ fallback_printer_get_hard_margins (GtkPrinter *printer, gdouble *left, gdouble *right) { - *top = 0; - *bottom = 0; - *left = 0; - *right = 0; - - return TRUE; + return FALSE; } static GList * -- 2.43.2