Tastudio - fixed input painting
This commit is contained in:
parent
d677e6dbe6
commit
44968d5f96
|
@ -1231,7 +1231,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
LastCell = CurrentCell;
|
||||
CurrentCell = newCell;
|
||||
|
||||
if (PointedCellChanged != null && newCell != CurrentCell)
|
||||
if (PointedCellChanged != null &&
|
||||
(LastCell.Column != CurrentCell.Column || LastCell.RowIndex != CurrentCell.RowIndex))
|
||||
{
|
||||
PointedCellChanged(this, new CellEventArgs(LastCell, CurrentCell));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue