From 43c2fc0f7828bdff34efde3b7fb4794d2faeb239 Mon Sep 17 00:00:00 2001 From: luk3yx Date: Fri, 30 Sep 2022 16:31:35 +1300 Subject: [PATCH] Bugfix --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 9152665..5c16f5d 100644 --- a/init.lua +++ b/init.lua @@ -374,7 +374,7 @@ local function expand(box) -- space if this is in a horizontal box. for node in pairs(expandable) do if node.type == "label" then - local align = node.algin_h or "auto" + local align = node.align_h or "auto" if align == "centre" or align == "center" or align == "fill" or (align == "auto" and node.expand) then align_types.fill(node, "x", "w", 0)