From ea79a02e94eca54d4166a76447210b563308f984 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sat, 15 May 2010 22:36:10 +0100 Subject: [PATCH] don't change the notification icon --- SparkleShare/SparkleRepo.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SparkleShare/SparkleRepo.cs b/SparkleShare/SparkleRepo.cs index 5183fc40..22c3b090 100644 --- a/SparkleShare/SparkleRepo.cs +++ b/SparkleShare/SparkleRepo.cs @@ -224,14 +224,14 @@ namespace SparkleShare { // Fetches changes from the remote repo public void Fetch () { FetchTimer.Stop (); - SparkleUI.NotificationIcon.SetSyncingState (); +// SparkleUI.NotificationIcon.SetSyncingState (); Console.WriteLine ("[Git][" + Name + "] Fetching changes... "); Process.StartInfo.Arguments = "fetch"; Process.Start(); Process.WaitForExit (); Console.WriteLine ("[Git][" + Name + "] Changes fetched."); Merge (); - SparkleUI.NotificationIcon.SetIdleState (); +// SparkleUI.NotificationIcon.SetIdleState (); FetchTimer.Start (); }