Merge pull request #3173 from Elv13/fix_maximized_tiled
screen: Correctly detect tiled_clients.
This commit is contained in:
commit
d5ce4d5d1c
|
@ -503,9 +503,8 @@ function screen.object.get_tiled_clients(s, stacked)
|
|||
-- Remove floating clients
|
||||
for _, c in pairs(clients) do
|
||||
if not c.floating
|
||||
and not c.fullscreen
|
||||
and not c.maximized_vertical
|
||||
and not c.maximized_horizontal then
|
||||
and not c.immobilized_horizontal
|
||||
and not c.immobilized_vertical then
|
||||
table.insert(tclients, c)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue