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