From 73aa37181320e789bc46c37b18fc47a19eb11804 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Mon, 14 Oct 2024 16:36:19 +0200 Subject: [PATCH] Fix Prop application order --- gfx/container.lua | 4 ++-- gfx/list.lua | 4 ++-- gfx/progress.lua | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/gfx/container.lua b/gfx/container.lua index b30925e..a63b5c5 100644 --- a/gfx/container.lua +++ b/gfx/container.lua @@ -2,7 +2,7 @@ local Prop = require("gfx.prop") local Children = require("gfx.prop.children") local Element = require("gfx.element") -local Container = Prop.attach(Element:new(), Children) +local Container = Element:new() function Container:getHeight() if self:isStrict() then @@ -38,4 +38,4 @@ function Container:setStrict(strict) end end -return Container \ No newline at end of file +return Prop.attach(Container, Children) \ No newline at end of file diff --git a/gfx/list.lua b/gfx/list.lua index 1199ed9..f52ce39 100644 --- a/gfx/list.lua +++ b/gfx/list.lua @@ -3,7 +3,7 @@ local Element = require("gfx.element") local Prop = require("gfx.prop") local Orientation = require("gfx.prop.orientation") local Children = require("gfx.prop.children") -local List = Prop.attach(Prop.attach(Element:new(), Orientation), Children) +local List = Element:new() function List:adjustPositions(from) from = from or 1 @@ -61,4 +61,4 @@ function List:_reload() self:adjustPositions() end -return List \ No newline at end of file +return Prop.attach(Prop.attach(List, Orientation), Children) \ No newline at end of file diff --git a/gfx/progress.lua b/gfx/progress.lua index 1be6527..6430d7f 100644 --- a/gfx/progress.lua +++ b/gfx/progress.lua @@ -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) end -local Progress = Prop.attach(Element:new{ +local Progress = Element:new{ progress = 0.0, active = nil, inactive = nil -}, Orientation, Orientation.HORIZONTAL) +} function Progress:new(o) local template = o or {} @@ -113,4 +113,4 @@ function Progress:_reload() self:_updateProgress() end -return Progress \ No newline at end of file +return Prop.attach(Progress, Orientation, Orientation.HORIZONTAL) \ No newline at end of file