Fix ewmh.activate to use the hints argument

This was missed in cb7f4b06, where the `raise` argument was changed to
`hints`.
This commit is contained in:
Daniel Hahler 2015-07-10 15:11:52 +02:00
parent 9eb4661cde
commit ae6a1efe65
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ end
-- @tparam boolean hints.raise should the client be raised? (default false)
function ewmh.activate(c, context, hints)
client.focus = c
if raise then
if hints.raise then
if awesome.startup or c:isvisible() then
c:raise()
else