mirror of https://github.com/lcpz/lain.git
layout: fixed useless_gap retrieval
This commit is contained in:
parent
430e70670c
commit
75b19142c1
|
@ -35,7 +35,7 @@ local function do_cascade(p, tiling)
|
|||
if #cls <= 0 then return end
|
||||
|
||||
-- Useless gaps.
|
||||
local useless_gap = tag.gap or 0
|
||||
local useless_gap = p.useless_gap or 0
|
||||
|
||||
if not tiling then
|
||||
-- Cascade windows.
|
||||
|
|
|
@ -27,7 +27,7 @@ local function do_centerwork(p, orientation)
|
|||
if #cls <= 0 then return end
|
||||
|
||||
-- Useless gaps.
|
||||
local useless_gap = tag.gap or 0
|
||||
local useless_gap = p.useless_gap or 0
|
||||
|
||||
local c = cls[1]
|
||||
local g = {}
|
||||
|
|
|
@ -26,7 +26,7 @@ local function do_fair(p, orientation)
|
|||
if #cls <= 0 then return end
|
||||
|
||||
-- Useless gaps.
|
||||
local useless_gap = tag.gap or 0
|
||||
local useless_gap = p.useless_gap or 0
|
||||
|
||||
if orientation == "west" then
|
||||
-- Layout with fixed number of vertical columns (read from nmaster).
|
||||
|
|
Loading…
Reference in New Issue