diff --git a/SparkleShare/SparkleSpinner.cs b/SparkleShare/SparkleSpinner.cs index 3bfe75ea..ffc006b0 100644 --- a/SparkleShare/SparkleSpinner.cs +++ b/SparkleShare/SparkleSpinner.cs @@ -68,7 +68,7 @@ namespace SparkleShare { if (CurrentStep < NumSteps) CurrentStep++; else - CurrentStep = 1; + CurrentStep = 0; Pixbuf = Images [CurrentStep]; } @@ -77,7 +77,8 @@ namespace SparkleShare { } public void Start () { - Active = true; + CurrentStep = 0; + Active = true; Timer.Start (); }