Fix typo in restricted sloppy focus

This commit is contained in:
crater2150 2017-11-23 11:19:03 +01:00
parent 788e15b54e
commit cf68e66e99

View file

@ -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