From 6e933d22b7b1f5a53690d1d5e8ce958c7948093d Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Tue, 15 Dec 2009 11:10:00 +0100 Subject: applet: reduce blinking time to 30 seconds Signed-off-by: Denys Vlasenko --- src/Applet/CCApplet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/Applet/CCApplet.cpp b/src/Applet/CCApplet.cpp index 5d13ab87..f9212b2a 100644 --- a/src/Applet/CCApplet.cpp +++ b/src/Applet/CCApplet.cpp @@ -320,7 +320,7 @@ void CApplet::animate_icon() if (m_iAnimator == 0) { m_iAnimator = g_timeout_add(100, update_icon, this); - m_iAnimCountdown = 10 * 60; /* 60 sec */ + m_iAnimCountdown = 10 * 30; /* 30 sec */ } } -- cgit