Merge pull request #227 from chrox/jpeg_fix

fix bug #179 and #224
pull/228/head
{Qingping,Dave} Hou 11 years ago
commit 380c626b25

@ -23,14 +23,17 @@ function ReaderCoptListener:onReadSettings(config)
local copt_font_size = config:readSetting("copt_font_size")
if copt_font_size then
table.insert(self.ui.postInitCallback, function()
self.ui:handleEvent(Event:new("SetFontSize", copt_font_size))
self.ui.document:setFontSize(copt_font_size)
self.ui:handleEvent(Event:new("UpdatePos"))
end)
end
local copt_margins = config:readSetting("copt_page_margins")
if copt_margins then
table.insert(self.ui.postInitCallback, function()
self.ui:handleEvent(Event:new("SetPageMargins", copt_margins))
-- FIXME: SetPageMargins will mess up current reading position
-- for now we simply disable this feature.
--self.ui:handleEvent(Event:new("SetPageMargins", copt_margins))
end)
end
end

@ -1 +1 @@
Subproject commit 15b4d4a59c96afd5a6d0ec2f2b5cb5538628638c
Subproject commit dc497096c0d39e1d9298ffe368960c5b838d4524
Loading…
Cancel
Save