mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 10:58:52 +00:00
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:
parent
f924ef2966
commit
d789a3c941
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user