From 3ab0f7a56603269c8f936803c4a111cf96a0675a Mon Sep 17 00:00:00 2001 From: Emmanuel Lepage Vallee Date: Sun, 24 Oct 2021 14:20:13 -0700 Subject: [PATCH] Fix a problem with the git-master version of awesome. getproperty use is long deprecated anyway, so it's not really a regression. --- layout.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layout.lua b/layout.lua index 31371ae..4b4a7b6 100644 --- a/layout.lua +++ b/layout.lua @@ -42,7 +42,7 @@ end function module.get_geometry(tag) local cls,results,flt = {},setmetatable({},{__mode="k"}),{} local s = tag.screen - local l = awful.tag.getproperty(tag,"layout") + local l = tag.layout local focus,focus_wrap = capi.client.focus,nil for k,c in ipairs (tag:clients()) do -- Handle floating client separately