From d5846e20ddb7c37eedb43238e02b42b1a85ed973 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Wed, 28 Aug 2013 11:23:12 +0200 Subject: [PATCH] linux setup: Fix compile error --- SparkleShare/Linux/SparkleSetup.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SparkleShare/Linux/SparkleSetup.cs b/SparkleShare/Linux/SparkleSetup.cs index 72d1783d..11a20f88 100755 --- a/SparkleShare/Linux/SparkleSetup.cs +++ b/SparkleShare/Linux/SparkleSetup.cs @@ -360,7 +360,8 @@ namespace SparkleShare { Button finish_button = new Button ("Finish") { Sensitive = false }; - Controller.UpdateProgressBarEvent += delegate (double percentage) { + Controller.UpdateProgressBarEvent += delegate (double percentage, string speed) { + // TODO: Add label to show download speed Application.Invoke (delegate { progress_bar.Fraction = percentage / 100; }); };