Fix NRE when spamming right click in TAStudio

This commit is contained in:
CasualPokePlayer 2024-11-27 12:47:38 -08:00
parent 128c8e6218
commit bd90dc6aa6
1 changed files with 1 additions and 1 deletions

View File

@ -893,7 +893,7 @@ namespace BizHawk.Client.EmuHawk
private void TasView_MouseDoubleClick(object sender, MouseEventArgs e)
{
if (TasView.CurrentCell.Column is not { Name: var columnName }) return;
if (TasView.CurrentCell?.Column is not { Name: var columnName }) return;
if (e.Button == MouseButtons.Left)
{