Merge pull request #3173 from Elv13/fix_maximized_tiled

screen: Correctly detect tiled_clients.
This commit is contained in:
mergify[bot] 2020-09-14 17:08:51 +00:00 committed by GitHub
commit d5ce4d5d1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -503,9 +503,8 @@ function screen.object.get_tiled_clients(s, stacked)
-- Remove floating clients -- Remove floating clients
for _, c in pairs(clients) do for _, c in pairs(clients) do
if not c.floating if not c.floating
and not c.fullscreen and not c.immobilized_horizontal
and not c.maximized_vertical and not c.immobilized_vertical then
and not c.maximized_horizontal then
table.insert(tclients, c) table.insert(tclients, c)
end end
end end