From 510ebf519a5e81387dbee310840fcacbb1ca88eb Mon Sep 17 00:00:00 2001 From: feos Date: Tue, 14 Jul 2015 00:39:26 +0300 Subject: [PATCH] tastudio: moved scrolling catch up and refresh to the end of TasView_PointedCellChanged(). can drag selection offscreen too now. todo: drag things above the view. --- .../tools/TAStudio/TAStudio.ListView.cs | 27 ++++++------------- 1 file changed, 8 insertions(+), 19 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs index b3471eed96..ddc2a353c8 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs @@ -565,8 +565,6 @@ namespace BizHawk.Client.EmuHawk { TasView.SelectRow(i, _frameDragState); } - - RefreshTasView(); } } @@ -650,8 +648,7 @@ namespace BizHawk.Client.EmuHawk if (frame < _triggerAutoRestoreFromFrame) _triggerAutoRestoreFromFrame = frame; - } - RefreshTasView(); + } } else if (TasView.IsPaintDown && e.NewCell.RowIndex.HasValue && !string.IsNullOrEmpty(_startBoolDrawColumn)) @@ -669,16 +666,9 @@ namespace BizHawk.Client.EmuHawk setVal = BoolPatterns[controllerType.BoolButtons.IndexOf(_startBoolDrawColumn)].GetNextValue(); } CurrentTasMovie.SetBoolState(i, _startBoolDrawColumn, setVal); // Notice it uses new row, old column, you can only paint across a single column - if (Settings.FollowCursor && _leftButtonHeld) - { - SetVisibleIndex(TasView.CurrentCell.RowIndex.Value); // todo: limit scrolling speed - } - if (TasView.CurrentCell.RowIndex.Value < _triggerAutoRestoreFromFrame) _triggerAutoRestoreFromFrame = TasView.CurrentCell.RowIndex.Value; } - - RefreshTasView(); } } @@ -697,18 +687,17 @@ namespace BizHawk.Client.EmuHawk setVal = FloatPatterns[controllerType.FloatControls.IndexOf(_startFloatDrawColumn)].GetNextValue(); } CurrentTasMovie.SetFloatState(i, _startFloatDrawColumn, setVal); // Notice it uses new row, old column, you can only paint across a single column - if (Settings.FollowCursor && _leftButtonHeld) - { - SetVisibleIndex(TasView.CurrentCell.RowIndex.Value); // todo: limit scrolling speed - } - if (TasView.CurrentCell.RowIndex.Value < _triggerAutoRestoreFromFrame) _triggerAutoRestoreFromFrame = TasView.CurrentCell.RowIndex.Value; } - - RefreshTasView(); } - } + } + + if (Settings.FollowCursor && mouseButtonHeld) + { + SetVisibleIndex(TasView.CurrentCell.RowIndex.Value); // todo: limit scrolling speed + } + RefreshTasView(); } private void TasView_MouseMove(object sender, MouseEventArgs e)