From 44968d5f96fab7d89b54461ce61b2a107f309a6d Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 11 Oct 2014 17:38:03 +0000 Subject: [PATCH] Tastudio - fixed input painting --- BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs index f939495f28..843b99954d 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs @@ -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)); }