From 3f80976980d0efbd9124fbb44fa5bece9bd4e8c1 Mon Sep 17 00:00:00 2001 From: "craig.p.drummond" Date: Wed, 15 Jan 2014 19:30:48 +0000 Subject: [PATCH] Speedup rotation --- support/spinner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/spinner.cpp b/support/spinner.cpp index 723cf043b..8e1a459fe 100644 --- a/support/spinner.cpp +++ b/support/spinner.cpp @@ -94,7 +94,7 @@ void Spinner::start() timer=new QTimer(this); connect(timer, SIGNAL(timeout()), this, SLOT(timeout())); } - timer->start(100); + timer->start(75); } void Spinner::stop()