awful.layout.suit.magnifier: fix background client geometry
This make sure that we render clients from top to bottom, with bottom client as the next focused one. Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
9b72694836
commit
f5c35765d2
|
@ -67,12 +67,26 @@ local function magnifier(_, screen)
|
||||||
geometry.height = area.height / (#cls - 1)
|
geometry.height = area.height / (#cls - 1)
|
||||||
geometry.width = area.width
|
geometry.width = area.width
|
||||||
|
|
||||||
|
local fidx
|
||||||
for k, c in ipairs(cls) do
|
for k, c in ipairs(cls) do
|
||||||
if c ~= focus then
|
if k == focus then
|
||||||
c:geometry(geometry)
|
fidx = k
|
||||||
geometry.y = geometry.y + geometry.height
|
break
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- First move clients that are before focused client.
|
||||||
|
for k = fidx + 1, #cls do
|
||||||
|
cls[k]:geometry(geometry)
|
||||||
|
geometry.y = geometry.y + geometry.height
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Then move clients that are after focused client.
|
||||||
|
-- So the next focused window will be the one at the top of the screen.
|
||||||
|
for k = 1, fidx - 1 do
|
||||||
|
cls[k]:geometry(geometry)
|
||||||
|
geometry.y = geometry.y + geometry.height
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue