Check "focusable" in awful.client.focus.filter(c)
Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
parent
9d1ae71cbf
commit
0e798d0d76
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue