From 1c09a094c4406c7daf14a0c9ce27437822d30edd Mon Sep 17 00:00:00 2001 From: Lorenzo Cogotti Date: Tue, 19 Sep 2023 18:16:18 +0200 Subject: [PATCH] [rows] Minor style improvement. --- rows.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rows.lua b/rows.lua index 74ef25a..8f9c392 100644 --- a/rows.lua +++ b/rows.lua @@ -23,6 +23,6 @@ local Rows = setmetatable({ Rows.__index = Rows -function Rows:new(args) return setmetatable(Layout:new(args), Rows) end +function Rows:new(args) return setmetatable(Layout:new(args), self) end return Rows