linux setup: Fix compile error

This commit is contained in:
Hylke Bons 2013-08-28 11:23:12 +02:00
parent 45e00887b5
commit d5846e20dd

View file

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