From cc66ba81c92eefd99423570888a0836540e0b1f0 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 27 Sep 2020 10:23:51 -0500 Subject: [PATCH] Tastudio - branches - disable toolbar buttons and menu items that need specifically 1 branch selected when multiple branches are selected --- .../tools/TAStudio/BookmarksBranchesBox.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudio/BookmarksBranchesBox.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudio/BookmarksBranchesBox.cs index c14bafb906..aa46852a2a 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudio/BookmarksBranchesBox.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudio/BookmarksBranchesBox.cs @@ -228,12 +228,13 @@ namespace BizHawk.Client.EmuHawk private void BranchesContextMenu_Opening(object sender, CancelEventArgs e) { + RemoveBranchContextMenuItem.Enabled = SelectedBranch != null; + UpdateBranchContextMenuItem.Enabled = - RemoveBranchContextMenuItem.Enabled = LoadBranchContextMenuItem.Enabled = EditBranchTextContextMenuItem.Enabled = JumpToBranchContextMenuItem.Enabled = - SelectedBranch != null; + BranchView.SelectedRows.Count() == 1; } private void AddBranchToolStripMenuItem_Click(object sender, EventArgs e) @@ -516,7 +517,7 @@ namespace BizHawk.Client.EmuHawk UpdateBranchButton.Enabled = LoadBranchButton.Enabled = JumpToBranchButton.Enabled = - SelectedBranch != null; + BranchView.SelectedRows.Count() == 1; } private void Select(int index, bool value)