From fcdeb2ffc8b8708209b8d2b985c82aec88feb9b7 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 27 Jan 2010 17:37:03 +0100 Subject: applet: reduce blinking timeout to 3 sec Signed-off-by: Denys Vlasenko --- src/Applet/CCApplet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Applet/CCApplet.cpp') diff --git a/src/Applet/CCApplet.cpp b/src/Applet/CCApplet.cpp index 302fe0b..9817f41 100644 --- a/src/Applet/CCApplet.cpp +++ b/src/Applet/CCApplet.cpp @@ -329,7 +329,7 @@ void CApplet::animate_icon() if (m_iAnimator == 0) { m_iAnimator = g_timeout_add(100, update_icon, this); - m_iAnimCountdown = 10 * 30; /* 30 sec */ + m_iAnimCountdown = 10 * 3; /* 3 sec */ } } -- cgit