setup: More verbose download status messages

This commit is contained in:
Hylke Bons 2013-08-26 23:13:57 +02:00
parent ca7e8b7786
commit 45e00887b5
3 changed files with 4 additions and 4 deletions

View file

@ -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) {

View file

@ -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");
}

View file

@ -456,7 +456,7 @@ namespace SparkleShare {
TextBlock progress_label = new TextBlock () {
Width = 414,
Text = "Starting...",
Text = "Preparing to fetch files…",
TextAlignment = TextAlignment.Right
};