mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-25 21:21:21 +00:00
printing: Use correct units for margins taken via IPP
cups_printer_get_hard_margins() returned margins in millimeters for margins taken via IPP request instead of Units used before.
This commit is contained in:
parent
cc780116a2
commit
00f9f1cc6b
@ -6424,10 +6424,10 @@ cups_printer_get_hard_margins (GtkPrinter *printer,
|
||||
}
|
||||
else if (cups_printer->media_margin_default_set)
|
||||
{
|
||||
*left = cups_printer->media_left_margin_default;
|
||||
*bottom = cups_printer->media_bottom_margin_default;
|
||||
*right = cups_printer->media_right_margin_default;
|
||||
*top = cups_printer->media_top_margin_default;
|
||||
*left = POINTS_PER_INCH * cups_printer->media_left_margin_default / MM_PER_INCH;
|
||||
*bottom = POINTS_PER_INCH * cups_printer->media_bottom_margin_default / MM_PER_INCH;
|
||||
*right = POINTS_PER_INCH * cups_printer->media_right_margin_default / MM_PER_INCH;
|
||||
*top = POINTS_PER_INCH * cups_printer->media_top_margin_default / MM_PER_INCH;
|
||||
result = TRUE;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user