Don't change cell selection while context menu is open (resolves #1551)

This commit is contained in:
James Groom 2019-04-21 14:24:58 +00:00 committed by GitHub
parent 1c9182a290
commit f599b33ee2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1196,7 +1196,7 @@ namespace BizHawk.Client.EmuHawk
if (AllowRightClickSelecton && e.Button == MouseButtons.Right)
{
if (!IsHoveringOnColumnCell)
if (!IsHoveringOnColumnCell && CurrentCell != null)
{
_currentX = e.X;
_currentY = e.Y;