Fix a problem with the git-master version of awesome.

getproperty use is long deprecated anyway, so it's not really a
regression.
This commit is contained in:
Emmanuel Lepage Vallee 2021-10-24 14:20:13 -07:00
parent 3d2cd785a4
commit 3ab0f7a566
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ end
function module.get_geometry(tag) function module.get_geometry(tag)
local cls,results,flt = {},setmetatable({},{__mode="k"}),{} local cls,results,flt = {},setmetatable({},{__mode="k"}),{}
local s = tag.screen local s = tag.screen
local l = awful.tag.getproperty(tag,"layout") local l = tag.layout
local focus,focus_wrap = capi.client.focus,nil local focus,focus_wrap = capi.client.focus,nil
for k,c in ipairs (tag:clients()) do for k,c in ipairs (tag:clients()) do
-- Handle floating client separately -- Handle floating client separately