Tastudio - fixed input painting

This commit is contained in:
adelikat 2014-10-11 17:38:03 +00:00
parent d677e6dbe6
commit 44968d5f96
1 changed files with 2 additions and 1 deletions

View File

@ -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));
}