Fix Prop application order

This commit is contained in:
Gabriel Tofvesson 2024-10-14 16:36:19 +02:00
parent 7c122d6e29
commit 73aa371813
3 changed files with 7 additions and 7 deletions

View File

@ -2,7 +2,7 @@ local Prop = require("gfx.prop")
local Children = require("gfx.prop.children") local Children = require("gfx.prop.children")
local Element = require("gfx.element") local Element = require("gfx.element")
local Container = Prop.attach(Element:new(), Children) local Container = Element:new()
function Container:getHeight() function Container:getHeight()
if self:isStrict() then if self:isStrict() then
@ -38,4 +38,4 @@ function Container:setStrict(strict)
end end
end end
return Container return Prop.attach(Container, Children)

View File

@ -3,7 +3,7 @@ local Element = require("gfx.element")
local Prop = require("gfx.prop") local Prop = require("gfx.prop")
local Orientation = require("gfx.prop.orientation") local Orientation = require("gfx.prop.orientation")
local Children = require("gfx.prop.children") local Children = require("gfx.prop.children")
local List = Prop.attach(Prop.attach(Element:new(), Orientation), Children) local List = Element:new()
function List:adjustPositions(from) function List:adjustPositions(from)
from = from or 1 from = from or 1
@ -61,4 +61,4 @@ function List:_reload()
self:adjustPositions() self:adjustPositions()
end end
return List return Prop.attach(Prop.attach(List, Orientation), Children)

View File

@ -16,11 +16,11 @@ local function round(value, biasDown)
return (((not biasDown) and decimal < 0.5) or ((not not biasDown) and decimal <= 0.5)) and math.floor(value) or math.ceil(value) return (((not biasDown) and decimal < 0.5) or ((not not biasDown) and decimal <= 0.5)) and math.floor(value) or math.ceil(value)
end end
local Progress = Prop.attach(Element:new{ local Progress = Element:new{
progress = 0.0, progress = 0.0,
active = nil, active = nil,
inactive = nil inactive = nil
}, Orientation, Orientation.HORIZONTAL) }
function Progress:new(o) function Progress:new(o)
local template = o or {} local template = o or {}
@ -113,4 +113,4 @@ function Progress:_reload()
self:_updateProgress() self:_updateProgress()
end end
return Progress return Prop.attach(Progress, Orientation, Orientation.HORIZONTAL)