From 54db46c9b74174c3b683313fc9dc0a971f2b4ef7 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sun, 5 Jun 2011 23:43:12 +0100 Subject: [PATCH] intro: disable progressbar after a failed or successful fetch --- SparkleShare/SparkleIntro.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/SparkleShare/SparkleIntro.cs b/SparkleShare/SparkleIntro.cs index 84fe38bf..2184d8a3 100644 --- a/SparkleShare/SparkleIntro.cs +++ b/SparkleShare/SparkleIntro.cs @@ -289,13 +289,16 @@ namespace SparkleShare { SparkleShare.Controller.FolderFetched += delegate { Application.Invoke (delegate { + this.progress_bar_pulse_timer.Stop (); Deletable = true; + UrgencyHint = true; ShowSuccessPage (canonical_name); }); }; SparkleShare.Controller.FolderFetchError += delegate { Application.Invoke (delegate { + this.progress_bar_pulse_timer.Stop (); Deletable = true; ShowErrorPage (); }); @@ -432,8 +435,6 @@ namespace SparkleShare { private void ShowErrorPage () { Reset (); - - UrgencyHint = true; VBox layout_vertical = new VBox (false, 0);