From 45e00887b55387548af44d913e8ba63c049367cd Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Mon, 26 Aug 2013 23:13:57 +0200 Subject: [PATCH] setup: More verbose download status messages --- SparkleShare/Mac/SparkleSetup.cs | 4 ++-- SparkleShare/SparkleSetupController.cs | 2 +- SparkleShare/Windows/SparkleSetup.cs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/SparkleShare/Mac/SparkleSetup.cs b/SparkleShare/Mac/SparkleSetup.cs index 70587521..b33b84e1 100755 --- a/SparkleShare/Mac/SparkleSetup.cs +++ b/SparkleShare/Mac/SparkleSetup.cs @@ -368,8 +368,8 @@ namespace SparkleShare { Enabled = false }; - ProgressLabel = new SparkleLabel ("", NSTextAlignment.Right); - ProgressLabel.Frame = new RectangleF (Frame.Width - 40 - 75, 185, 75, 25); + ProgressLabel = new SparkleLabel ("Preparing to fetch files…", NSTextAlignment.Right); + ProgressLabel.Frame = new RectangleF (Frame.Width - 40 - 250, 185, 250, 25); Controller.UpdateProgressBarEvent += delegate (double percentage, string speed) { diff --git a/SparkleShare/SparkleSetupController.cs b/SparkleShare/SparkleSetupController.cs index dc48ca35..ec282c9c 100755 --- a/SparkleShare/SparkleSetupController.cs +++ b/SparkleShare/SparkleSetupController.cs @@ -416,7 +416,7 @@ namespace SparkleShare { if (speed == 0.0) UpdateProgressBarEvent (ProgressBarPercentage, ""); else - UpdateProgressBarEvent (ProgressBarPercentage, speed.ToSize () + "/s"); + UpdateProgressBarEvent (ProgressBarPercentage, "Fetching files… " + speed.ToSize () + "/s"); } diff --git a/SparkleShare/Windows/SparkleSetup.cs b/SparkleShare/Windows/SparkleSetup.cs index 78ebcdc0..1bc1582a 100644 --- a/SparkleShare/Windows/SparkleSetup.cs +++ b/SparkleShare/Windows/SparkleSetup.cs @@ -456,7 +456,7 @@ namespace SparkleShare { TextBlock progress_label = new TextBlock () { Width = 414, - Text = "Starting...", + Text = "Preparing to fetch files…", TextAlignment = TextAlignment.Right };