From ddbbdb265b337e7506b595ae20e6253451df12a5 Mon Sep 17 00:00:00 2001 From: Guus Bons Date: Sun, 25 Dec 2011 15:51:00 +0100 Subject: [PATCH] Fix warning --- SparkleShare/SparkleSetup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SparkleShare/SparkleSetup.cs b/SparkleShare/SparkleSetup.cs index 3b8b0235..074e91b8 100755 --- a/SparkleShare/SparkleSetup.cs +++ b/SparkleShare/SparkleSetup.cs @@ -181,7 +181,7 @@ namespace SparkleShare { Controller.ChangeAddressFieldEvent += delegate (string text, string example_text, FieldState state) { - Console.WriteLine ("> " + text); + Application.Invoke (delegate { AddressEntry.Text = text; AddressEntry.Sensitive = (state == FieldState.Enabled);