From f5c0932e0426ef687ab0e0e081c35cfa093f2201 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sun, 10 Oct 2010 15:38:43 +0100 Subject: [PATCH] [statusicon] don't restart the animation when it's already running --- SparkleShare/SparkleStatusIcon.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SparkleShare/SparkleStatusIcon.cs b/SparkleShare/SparkleStatusIcon.cs index d9990518..e120408f 100644 --- a/SparkleShare/SparkleStatusIcon.cs +++ b/SparkleShare/SparkleStatusIcon.cs @@ -430,7 +430,9 @@ namespace SparkleShare { { StateText = _("Syncing…"); - Animation.Start (); + + if (!Animation.Enabled) + Animation.Start (); }