From cf68e66e99305d34026b011074006d2942ae7864 Mon Sep 17 00:00:00 2001 From: crater2150 Date: Thu, 23 Nov 2017 11:19:03 +0100 Subject: [PATCH] Fix typo in restricted sloppy focus --- signals.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/signals.lua b/signals.lua index 293f8d8..04ac055 100644 --- a/signals.lua +++ b/signals.lua @@ -23,7 +23,7 @@ local fixed_clients = { } local function may_lose_focus(c) - if c ~= nil then return true end + if c == nil then return true end return not awful.rules.matches_list(c, fixed_clients) end