# HG changeset patch # User PAMPHILE Jonathan # Date 1258460534 -3600 # Node ID 468f3757f1f8a966a5b8a8f9115fee4219bac246 # Parent 240314f2e5bfe831e3b6e35c35c5dbf1399cdebf Correction probleme tc annotation diff -r 240314f2e5bf -r 468f3757f1f8 src/FingersDance.Control.SyncSource/UserControlSyncSource.xaml.cs --- a/src/FingersDance.Control.SyncSource/UserControlSyncSource.xaml.cs Tue Nov 17 13:21:49 2009 +0100 +++ b/src/FingersDance.Control.SyncSource/UserControlSyncSource.xaml.cs Tue Nov 17 13:22:14 2009 +0100 @@ -130,11 +130,11 @@ UserControlPlayer.Player.Position = ts; UserControlPlayer.playerPlay(); - UserControlPlayer.Time = (float)SliderValue / 1000; UCTimeLine.IsDragging = false; UCTimeLine.FinishedDragging = false; } + UserControlPlayer.Time = (float)SliderValue / 1000; DataDictionary Data = (new DataFactory()).Data; UserControlPlayer.ApplyColor(Data.GetColors((int)((float)SliderValue / 1000))); } diff -r 240314f2e5bf -r 468f3757f1f8 src/FingersDance.GestureControl/GestureControl.cs --- a/src/FingersDance.GestureControl/GestureControl.cs Tue Nov 17 13:21:49 2009 +0100 +++ b/src/FingersDance.GestureControl/GestureControl.cs Tue Nov 17 13:22:14 2009 +0100 @@ -157,13 +157,13 @@ try { Thread.Sleep(1000); - start = -1; CommonPattern(); string gesture = GetPattern(_Gestures); if (gesture != "None") { this.RaiseGestureEvent(new Gesture{Start=start, End=time, Name=gesture}); } + start = -1; _Gestures.Clear(); inProgess = null; }