Fix footnote size after screen rotation (#4316)

This commit is contained in:
poire-z
2018-11-09 21:44:00 +01:00
committed by Frans de Jonge
parent 05e687f570
commit 5d6807620f

View File

@@ -103,8 +103,6 @@ local FootnoteWidget = InputContainer:new{
top = Screen:scaleBySize(10),
bottom = Screen:scaleBySize(10),
},
width = Screen:getWidth(),
height = math.floor(Screen:getHeight() * 1/3), -- will be decreased when content is smaller
follow_callback = nil,
on_tap_close_callback = nil,
close_callback = nil,
@@ -112,6 +110,10 @@ local FootnoteWidget = InputContainer:new{
}
function FootnoteWidget:init()
-- Set widget size
self.width = Screen:getWidth()
self.height = math.floor(Screen:getHeight() * 1/3) -- will be decreased when content is smaller
if Device:isTouchDevice() then
local range = Geom:new{
x = 0, y = 0,