[statusicon] don't restart the animation when it's already running

This commit is contained in:
Hylke Bons 2010-10-10 15:38:43 +01:00
parent 6d9fa96ff1
commit f5c0932e04

View file

@ -430,7 +430,9 @@ namespace SparkleShare {
{
StateText = _("Syncing…");
Animation.Start ();
if (!Animation.Enabled)
Animation.Start ();
}