From eb292eddccd4cdb49cd0ec4a963842d75c7d0a32 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 15 Nov 2014 21:48:34 +0000 Subject: [PATCH] Tastudio - fix crash when loading a state for a frame after the current movie length, tastudio was getting refreshed before the row count was being updated --- BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.IToolForm.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.IToolForm.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.IToolForm.cs index 8a0004da14..da90efda59 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.IToolForm.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.IToolForm.cs @@ -22,12 +22,12 @@ namespace BizHawk.Client.EmuHawk return; } - if (TasPlaybackBox.FollowCursor) + RefreshDialog(); + + if (TasPlaybackBox.FollowCursor) // TODO: we already refreshed in RefreshDialog now we will do it again, make this more efficient { SetVisibleIndex(); } - - RefreshDialog(); } public void FastUpdate()