fix fullscreen freezes; closes #285; thanks to @psychon

This commit is contained in:
Luca Capezzuto 2021-07-29 18:37:37 +02:00
parent 9a747d2574
commit 1875fde0a2
No known key found for this signature in database
GPG Key ID: 4E53F7C0EC846979
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ end)
screen.connect_signal("arrange", function (s)
local only_one = #s.tiled_clients == 1
for _, c in pairs(s.clients) do
if only_one and not c.floating or c.maximized then
if only_one and not c.floating or c.maximized or c.fullscreen then
c.border_width = 0
else
c.border_width = beautiful.border_width