Increase granularity of the font size fine tuning button

Should allow us to get at the full 12 to 30 range when scaled on a 300dpi
device (29 -> 72 or 26 -> 64 w/ a dpi override).
pull/4852/head
NiLuJe 5 years ago
parent 783c3fd7dc
commit abbb3ea747

@ -207,7 +207,7 @@ end
UpdatePos event is used to tell ReaderRolling to update pos.
--]]
function ReaderFont:onChangeSize(direction, font_delta)
local delta = direction == "decrease" and -1 or 1
local delta = direction == "decrease" and -0.5 or 0.5
if font_delta then
self.font_size = self.font_size + font_delta * delta
else

Loading…
Cancel
Save