From 5bff769fe90cc6444f5d62b79be36a24c48b8675 Mon Sep 17 00:00:00 2001 From: vadosnaprimer Date: Wed, 10 Jan 2018 19:09:37 +0300 Subject: [PATCH] tastudio: - scroll to new marker and new branch - don't kill selection per marker removal --- BizHawk.Client.EmuHawk/tools/TAStudio/BookmarksBranchesBox.cs | 1 + BizHawk.Client.EmuHawk/tools/TAStudio/MarkerControl.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/BookmarksBranchesBox.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/BookmarksBranchesBox.cs index 96497bced7..e7a221fda2 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/BookmarksBranchesBox.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/BookmarksBranchesBox.cs @@ -135,6 +135,7 @@ namespace BizHawk.Client.EmuHawk Movie.AddBranch(branch); BranchView.RowCount = Movie.BranchCount; Movie.CurrentBranch = Movie.BranchCount - 1; + BranchView.ScrollToIndex(Movie.CurrentBranch); BranchView.Refresh(); Tastudio.RefreshDialog(); } diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/MarkerControl.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/MarkerControl.cs index 9646808d86..3b96042ccb 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/MarkerControl.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/MarkerControl.cs @@ -150,7 +150,6 @@ namespace BizHawk.Client.EmuHawk if (MarkerView.AnyRowsSelected) { SelectedMarkers.ForEach(i => Markers.Remove(i)); - MarkerInputRoll.DeselectAll(); Tastudio.RefreshDialog(); MarkerView_SelectedIndexChanged(null, null); } @@ -190,6 +189,7 @@ namespace BizHawk.Client.EmuHawk UpdateValues(); } + MarkerView.ScrollToIndex(Markers.Count() - 1); Tastudio.RefreshDialog(); }