Fixed bug with right click inputRoll selction.

This commit is contained in:
Kyle Howell 2016-09-25 12:47:37 -06:00
parent a9cded19bb
commit d66181a597
1 changed files with 1 additions and 0 deletions

View File

@ -1180,6 +1180,7 @@ namespace BizHawk.Client.EmuHawk
_currentX = e.X;
_currentY = e.Y;
Cell newCell = CalculatePointedCell(_currentX.Value, _currentY.Value);
newCell.RowIndex += FirstVisibleRow;
CellChanged(newCell);
SelectCell(CurrentCell);
}