[rows] Minor style improvement.

This commit is contained in:
Lorenzo Cogotti 2023-09-19 18:16:18 +02:00
parent 26daeb7c70
commit 1c09a094c4
1 changed files with 1 additions and 1 deletions

View File

@ -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