I think i've found the fix for this, looking through the Epiphany code,
specifically the embed/mozilla/GeckoPrintService.cpp file, there's a
line (around 737-739) that reads:

" gtk_print_settings_set_scale (aGtkSettings, 1.0); "

But the GNOME Library Documentation states:

" scale : the scale in percent "

So, the solution turned out to be changing:

    gtk_print_settings_set_scale (aGtkSettings, 1.0);

To:

    gtk_print_settings_set_scale (aGtkSettings, 99.0);

(Or, whatever size you actually want to scale at)

-- 
Epiphany prints blank pages
https://bugs.launchpad.net/bugs/217151
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to