From 87d8c1ebce0af14ce8c17a208f8eef6827a594f8 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Mon, 7 Feb 2011 18:13:34 +0000 Subject: [PATCH] [ui] update [log] on local commits --- SparkleShare/Mac/SparkleShare/SparkleUI.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/SparkleShare/Mac/SparkleShare/SparkleUI.cs b/SparkleShare/Mac/SparkleShare/SparkleUI.cs index 83b0d557..75361de2 100644 --- a/SparkleShare/Mac/SparkleShare/SparkleUI.cs +++ b/SparkleShare/Mac/SparkleShare/SparkleUI.cs @@ -81,6 +81,17 @@ namespace SparkleShare { }); }; + + SparkleShare.Controller.OnIdle += delegate { + + InvokeOnMainThread (delegate { + + foreach (SparkleLog log in SparkleUI.OpenLogs) + log.UpdateEventLog (); + + }); + + }; }