layout: spiral: remove size check
This is already done by the C code. Signed-off-by: Fabienne Ducroquet <fabiduc@gmail.com> Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
46f5476e20
commit
034a93d691
|
@ -21,40 +21,37 @@ local function spiral(p, dwindle)
|
||||||
local nh = wa.height
|
local nh = wa.height
|
||||||
|
|
||||||
for k, c in ipairs(cls) do
|
for k, c in ipairs(cls) do
|
||||||
if (k % 2 == 0 and nh / 2 > 2 * c.border_width)
|
if k < n then
|
||||||
or (k % 2 == 1 and nw / 2 > 2 * c.border_width) then
|
if k % 2 == 0 then
|
||||||
if k < n then
|
nh = nh / 2
|
||||||
if k % 2 == 0 then
|
else
|
||||||
nh = nh / 2
|
nw = nw / 2
|
||||||
else
|
|
||||||
nw = nw / 2
|
|
||||||
end
|
|
||||||
if k % 4 == 3 and not dwindle then
|
|
||||||
nx = nx + nw
|
|
||||||
elseif k % 4 == 0 and not dwindle then
|
|
||||||
ny = ny + nh
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
if k % 4 == 1 then
|
if k % 4 == 3 and not dwindle then
|
||||||
if dwindle then
|
|
||||||
ny = ny + nh
|
|
||||||
else
|
|
||||||
ny = ny - nh
|
|
||||||
end
|
|
||||||
elseif k % 4 == 2 then
|
|
||||||
nx = nx + nw
|
nx = nx + nw
|
||||||
elseif k % 4 == 3 then
|
elseif k % 4 == 0 and not dwindle then
|
||||||
ny = ny + nh
|
ny = ny + nh
|
||||||
elseif k % 4 == 0 then
|
|
||||||
if dwindle then
|
|
||||||
nx = nx + nw
|
|
||||||
else
|
|
||||||
nx = nx - nw
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
if k == 1 then
|
end
|
||||||
ny = wa.y
|
if k % 4 == 1 then
|
||||||
|
if dwindle then
|
||||||
|
ny = ny + nh
|
||||||
|
else
|
||||||
|
ny = ny - nh
|
||||||
end
|
end
|
||||||
|
elseif k % 4 == 2 then
|
||||||
|
nx = nx + nw
|
||||||
|
elseif k % 4 == 3 then
|
||||||
|
ny = ny + nh
|
||||||
|
elseif k % 4 == 0 then
|
||||||
|
if dwindle then
|
||||||
|
nx = nx + nw
|
||||||
|
else
|
||||||
|
nx = nx - nw
|
||||||
|
end
|
||||||
|
end
|
||||||
|
if k == 1 then
|
||||||
|
ny = wa.y
|
||||||
end
|
end
|
||||||
local geom = { x = nx, y = ny, width = nw, height = nh }
|
local geom = { x = nx, y = ny, width = nw, height = nh }
|
||||||
c:geometry(geom)
|
c:geometry(geom)
|
||||||
|
|
Loading…
Reference in New Issue