feat(lib: awful: layout: suit: corner): add support for 'master_fill_policy'

This commit is contained in:
actionless 2015-07-16 12:22:14 +02:00
parent fb4a331014
commit 34290433c2
1 changed files with 8 additions and 3 deletions

View File

@ -89,7 +89,7 @@ local function do_corner(p, orientation)
row.x_increment = row.win_width
row.win_idx = 0
-- Extend master if there is only a few windows
-- Extend master if there is only a few windows and "expand" policy is set
if #cls < 3 then
if row_privileged then
master.x = wa.x
@ -99,7 +99,12 @@ local function do_corner(p, orientation)
master.height = wa.height
end
if #cls < 2 then
if tag.getmfpol(t) == "expand" then
master = wa
else
master.x = master.x + (wa.width - master.width)/2
master.y = master.y + (wa.height - master.height)/2
end
end
end