Skip to content

Commit

Permalink
[fix] larger max font size for crengine
Browse files Browse the repository at this point in the history
Fixes #2686
  • Loading branch information
Frenzie committed Feb 10, 2018
1 parent ced9e45 commit ec8d861
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion base
2 changes: 1 addition & 1 deletion frontend/apps/reader/modules/readerfont.lua
Expand Up @@ -181,7 +181,7 @@ function ReaderFont:onChangeSize(direction, font_delta)
end
function ReaderFont:onSetFontSize(new_size)
if new_size > 72 then new_size = 72 end
if new_size > 255 then new_size = 255 end
if new_size < 12 then new_size = 12 end
self.font_size = new_size
Expand Down

0 comments on commit ec8d861

Please sign in to comment.