fix fullscreen freezes; closes #285; thanks to @psychon
This commit is contained in:
parent
9a747d2574
commit
1875fde0a2
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue