debug: increase hover timeout

Hover timeout is triggered even when the mouse is already inside the
surface. This is quite problematic. We increase it in the meantime.
This commit is contained in:
Vincent Bernat 2012-07-29 22:47:54 +02:00
parent 7b1de40744
commit 04dfe644d7

View file

@ -99,6 +99,6 @@ function dbg(...)
-- Display only if we don't have only clients to be displayed
if clients ~= num then
naughty.notify{ text = text, timeout = 0, hover_timeout = 0.05, screen = screen.count() }
naughty.notify{ text = text, timeout = 0, hover_timeout = 2, screen = screen.count() }
end
end