From 4f59a03a6f395b1db7d641c4ea0dd36de4ecaee0 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Mon, 13 Jun 2011 18:57:56 +0100 Subject: [PATCH] repo base: disable watching when syncing down --- SparkleLib/SparkleRepoBase.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SparkleLib/SparkleRepoBase.cs b/SparkleLib/SparkleRepoBase.cs index 31791649..a61c8cc4 100644 --- a/SparkleLib/SparkleRepoBase.cs +++ b/SparkleLib/SparkleRepoBase.cs @@ -382,6 +382,7 @@ namespace SparkleLib { { SparkleHelpers.DebugInfo ("SyncDown", "[" + Name + "] Initiated"); this.remote_timer.Stop (); + this.local_timer.Stop (); if (SyncStatusChanged != null) SyncStatusChanged (SyncStatus.SyncDown); @@ -414,6 +415,7 @@ namespace SparkleLib { SyncStatusChanged (SyncStatus.Idle); this.remote_timer.Start (); + this.local_timer.Start (); }