Fix embarrassing thinko (fixup 1a969fa4a6)

Now people know for sure that I sometimes forget to test that code
actually works before committing. It was so straightforward, what
could possibly go wrong?
This commit is contained in:
Jean-Marc Lasgouttes 2018-01-26 10:06:28 +01:00
parent f924ef2966
commit d789a3c941

View File

@ -394,10 +394,10 @@ int BufferView::zoomedPixels(int pix) const
// Zoom factor specified by user in percent
double const zoom = lyxrc.currentZoom / 100.0; // [percent]
// DPI setting for monitor: pixels/inch
double const dpi = lyxrc.dpi; // screen resolution [pixels/inch]
// DPI setting for monitor relative to 100dpi
double const dpizoom = lyxrc.dpi / 100.0; // [per 100dpi]
return support::iround(pix * zoom * dpi);
return support::iround(pix * zoom * dpizoom);
}