Don't change cell selection while context menu is open (resolves #1551)
This commit is contained in:
parent
1c9182a290
commit
f599b33ee2
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue