THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
A new Flyspray task has been opened. Details are below.
User who did this - stefano verna (steffoz)
Attached to Project - awesome
Summary - Problems with allscreen tasklist on mouse click
Task Type - Bug Report
Category - Core
Status - Unconfirmed
Assigned To -
Operating System - All
Severity - Low
Priority - Normal
Reported Version - git/master
Due in Version - Undecided
Due Date - Undecided
Details - the default awesomerc.lua has this piece of code to handle tasklist
mouse events:
mytasklist.buttons = { button({ }, 1, function (c) client.focus = c; c:raise()
end),
-- other events
}
unfortunately, if you're using the allscreen tasklist, this is not sufficient,
it should be:
mytasklist.buttons = { button({ }, 1, function (c)
client.focus = c
if not c:isvisible() then
awful.tag.viewmore(c:tags(), c.screen)
end
c:raise()
end),
-- other events
}
as correctly does the awful.menu.client menu
More information can be found at the following URL:
http://awesome.naquadah.org/bugs/index.php?do=details&task_id=450
You are receiving this message because you have requested it from the Flyspray
bugtracking system. If you did not expect this message or don't want to
receive mails in future, you can change your notification settings at the URL
shown above.
--
To unsubscribe, send mail to [email protected].