From 1875fde0a28312909ecca0c51e77a32dd731ebbd Mon Sep 17 00:00:00 2001 From: Luca Capezzuto Date: Thu, 29 Jul 2021 18:37:37 +0200 Subject: [PATCH] fix fullscreen freezes; closes #285; thanks to @psychon --- rc.lua.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc.lua.template b/rc.lua.template index 4416ef1..5bfdfd0 100644 --- a/rc.lua.template +++ b/rc.lua.template @@ -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