1
0
Fork 0
mirror of https://github.com/lcpz/awesome-copycats.git synced 2024-10-22 12:31:23 +00:00

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

View file

@ -224,7 +224,7 @@ end)
screen.connect_signal("arrange", function (s) screen.connect_signal("arrange", function (s)
local only_one = #s.tiled_clients == 1 local only_one = #s.tiled_clients == 1
for _, c in pairs(s.clients) do 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 c.border_width = 0
else else
c.border_width = beautiful.border_width c.border_width = beautiful.border_width