Merge pull request #152 from blueyed/autofocus-use-request-activate
autofocus: emit `request::activate` signal
This commit is contained in:
commit
20cdb5d439
|
@ -20,7 +20,9 @@ local function check_focus(obj)
|
||||||
-- When no visible client has the focus...
|
-- When no visible client has the focus...
|
||||||
if not client.focus or not client.focus:isvisible() then
|
if not client.focus or not client.focus:isvisible() then
|
||||||
local c = aclient.focus.history.get(obj.screen, 0)
|
local c = aclient.focus.history.get(obj.screen, 0)
|
||||||
if c then client.focus = c end
|
if c then
|
||||||
|
c:emit_signal('request::activate', "autofocus.check_focus")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -38,7 +40,9 @@ local function check_focus_tag(t)
|
||||||
check_focus({ screen = s })
|
check_focus({ screen = s })
|
||||||
if client.focus and client.focus.screen ~= s then
|
if client.focus and client.focus.screen ~= s then
|
||||||
local c = aclient.focus.history.get(s, 0)
|
local c = aclient.focus.history.get(s, 0)
|
||||||
if c then client.focus = c end
|
if c then
|
||||||
|
c:emit_signal('request::activate', "autofocus.check_focus_tag")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue