mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
15 lines
233 B
Lua
15 lines
233 B
Lua
|
local Widget = require("ui/widget/widget")
|
||
|
|
||
|
--[[
|
||
|
Dummy Widget that reserves vertical space
|
||
|
--]]
|
||
|
local VerticalSpan = Widget:new{
|
||
|
width = 0,
|
||
|
}
|
||
|
|
||
|
function VerticalSpan:getSize()
|
||
|
return {w = 0, h = self.width}
|
||
|
end
|
||
|
|
||
|
return VerticalSpan
|