From 46e8bdeefa46e46fb03ce06d346ae6782b88c57f Mon Sep 17 00:00:00 2001 From: Suuper Date: Wed, 15 Jul 2015 15:11:32 -0500 Subject: [PATCH] A quick attempt at fixing frame scrolling up with wheel. Not perfect, but better. --- .../tools/TAStudio/TAStudio.ListView.cs | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs index 6195c9bdf8..4438863763 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs @@ -502,13 +502,26 @@ namespace BizHawk.Client.EmuHawk if (TasView.RightButtonHeld && TasView.CurrentCell.RowIndex.HasValue) { _supressContextMenu = true; - if (e.Delta < 0) + if (GlobalWin.MainForm.IsSeeking) { - GoToNextFrame(); + if (e.Delta < 0) + GlobalWin.MainForm.PauseOnFrame++; + else + { + GlobalWin.MainForm.PauseOnFrame--; + if (Global.Emulator.Frame == GlobalWin.MainForm.PauseOnFrame) + { + GlobalWin.MainForm.PauseEmulator(); + GlobalWin.MainForm.PauseOnFrame = null; + } + } } else { - GoToPreviousFrame(); + if (e.Delta < 0) + GoToNextFrame(); + else + GoToPreviousFrame(); } }