mirror of https://github.com/lcpz/lain.git
centerfair: ncol uselessgaps fixed
This commit is contained in:
parent
ada3be2c9a
commit
b0eec6c5a8
|
@ -91,7 +91,7 @@ function centerfair.arrange(p)
|
||||||
|
|
||||||
-- Master client deserves a special treatement
|
-- Master client deserves a special treatement
|
||||||
local g = {}
|
local g = {}
|
||||||
g.width = wa.width - (num_x - 1) * width - num_x * useless_gap
|
g.width = wa.width - (num_x - 1) * width - num_x * 2*useless_gap - 2
|
||||||
g.height = wa.height - 2*useless_gap - 2
|
g.height = wa.height - 2*useless_gap - 2
|
||||||
g.x = offset_x + useless_gap + global_border
|
g.x = offset_x + useless_gap + global_border
|
||||||
g.y = offset_y + global_border
|
g.y = offset_y + global_border
|
||||||
|
@ -142,7 +142,7 @@ function centerfair.arrange(p)
|
||||||
g.width = width
|
g.width = width
|
||||||
|
|
||||||
if useless_gap > 0 then
|
if useless_gap > 0 then
|
||||||
g.width = g.width - useless_gap/2 - 2
|
g.width = g.width + useless_gap - 2
|
||||||
end
|
end
|
||||||
|
|
||||||
for i = 1, (num_x-1) do
|
for i = 1, (num_x-1) do
|
||||||
|
|
Loading…
Reference in New Issue