On Sat, Sep 24, 2011 at 04:36:39PM +0200, Jörg Sommer wrote:
> On high resolution displays, the default fonts becoming very small. In
> releases before Xulrunner 2.0 the preferences layout.css.dpi,
> layout.css.devPixelsPerPx, browser.display.screen_resolution and
> browser.screen_resolution could be set to scale fonts to an appropriate
> size. But since Xulrunner 2.0 none of these settings have any effect.
> 
> For Firefox the common recommandation is the add‐on NoSquint that sets
> the default zoom level of the markupDocumentViewer. This patch does the
> same for Conkeror. It defines a variable default_zoom_factor which is set
> as the default value for each buffer.

In the past, people have always used create_buffer_hook to do this.  It's
elegant enough that I feel no pressing need to change it..

  function my_zoom_set (buffer) {
      browser_zoom_set(buffer, false, 150);
  }
  add_hook('create_buffer_hook', my_zoom_set);

-- 
John Foerch
_______________________________________________
Conkeror mailing list
[email protected]
https://www.mozdev.org/mailman/listinfo/conkeror

Reply via email to