fix(kobofrontligh): initialize dimen with nil value

This commit is contained in:
Qingping Hou
2016-10-14 19:51:24 -07:00
parent 67ae10742a
commit 31d22dfc17

View File

@@ -20,7 +20,7 @@ local ReaderKoboLight = InputContainer:new{
function ReaderKoboLight:init()
self[1] = LeftContainer:new{
dimen = Geom:new{w = Screen:getWidth(), h = Screen:getHeight()},
dimen = Geom:new{w = nil, h = nil},
}
self:resetLayout()
end