repo base: disable watching when syncing down

This commit is contained in:
Hylke Bons 2011-06-13 18:57:56 +01:00
parent 7a71fb3682
commit 93bb772db0

View file

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