From 04dfe644d773c97f0b5ffcc1050d0dc89bff0687 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Sun, 29 Jul 2012 22:47:54 +0200 Subject: [PATCH] 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. --- rc/debug.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc/debug.lua b/rc/debug.lua index 44f352f..e17b915 100644 --- a/rc/debug.lua +++ b/rc/debug.lua @@ -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