don't change the notification icon

This commit is contained in:
Hylke Bons 2010-05-15 22:36:10 +01:00
parent f17af8c3f1
commit ea79a02e94

View file

@ -224,14 +224,14 @@ namespace SparkleShare {
// Fetches changes from the remote repo // Fetches changes from the remote repo
public void Fetch () { public void Fetch () {
FetchTimer.Stop (); FetchTimer.Stop ();
SparkleUI.NotificationIcon.SetSyncingState (); // SparkleUI.NotificationIcon.SetSyncingState ();
Console.WriteLine ("[Git][" + Name + "] Fetching changes... "); Console.WriteLine ("[Git][" + Name + "] Fetching changes... ");
Process.StartInfo.Arguments = "fetch"; Process.StartInfo.Arguments = "fetch";
Process.Start(); Process.Start();
Process.WaitForExit (); Process.WaitForExit ();
Console.WriteLine ("[Git][" + Name + "] Changes fetched."); Console.WriteLine ("[Git][" + Name + "] Changes fetched.");
Merge (); Merge ();
SparkleUI.NotificationIcon.SetIdleState (); // SparkleUI.NotificationIcon.SetIdleState ();
FetchTimer.Start (); FetchTimer.Start ();
} }