From 031a3bbfee17558fd66be68e2ab2076aefcbf958 Mon Sep 17 00:00:00 2001 From: OmegaRogue Date: Tue, 13 Dec 2022 14:54:47 +0100 Subject: [PATCH] Fix disabled smart borders reappearing on moving the client --- init.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/init.lua b/init.lua index 5f7f355..e51a59c 100644 --- a/init.lua +++ b/init.lua @@ -659,6 +659,10 @@ local function new(config) end local smart_border_titlebars = function(c) + if c.disable_smart_borders then + return + end + local border_bg = wibox.widget.base.make_widget_declarative({ { widget = wibox.container.margin }, id = "border_bg",