From 0e798d0d764cbb2738c13f0c70cd1f35395fea1a Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Thu, 12 Aug 2010 13:18:40 +0200 Subject: [PATCH] Check "focusable" in awful.client.focus.filter(c) Signed-off-by: Uli Schlachter --- lib/awful/client.lua.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/awful/client.lua.in b/lib/awful/client.lua.in index 2c6bf433..ec810c32 100644 --- a/lib/awful/client.lua.in +++ b/lib/awful/client.lua.in @@ -113,7 +113,8 @@ end function focus.filter(c) if c.type == "desktop" or c.type == "dock" - or c.type == "splash" then + or c.type == "splash" + or not c.focusable then return nil end return c