From a2cb4373a972d7e10249d4b16a5422d23d714c83 Mon Sep 17 00:00:00 2001 From: feos Date: Mon, 13 Jul 2015 22:05:12 +0300 Subject: [PATCH] tastudio: scroll to frame appended by offscreen dragging. need to figure out scroll speed, as it is too high unless drawing VERY slowly. --- .../tools/TAStudio/TAStudio.ListView.cs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs index bcb0d475bc..b3471eed96 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs @@ -669,6 +669,11 @@ 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; } @@ -691,7 +696,12 @@ namespace BizHawk.Client.EmuHawk else 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 + 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; }