Fix NRE when spamming right click in TAStudio
This commit is contained in:
parent
128c8e6218
commit
bd90dc6aa6
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue