From d66181a597a0419dd7e9d8591a88d9584099e12a Mon Sep 17 00:00:00 2001 From: Kyle Howell Date: Sun, 25 Sep 2016 12:47:37 -0600 Subject: [PATCH] Fixed bug with right click inputRoll selction. --- BizHawk.Client.EmuHawk/CustomControls/InputRoll.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/BizHawk.Client.EmuHawk/CustomControls/InputRoll.cs b/BizHawk.Client.EmuHawk/CustomControls/InputRoll.cs index 071fafd12a..14aeeb842b 100644 --- a/BizHawk.Client.EmuHawk/CustomControls/InputRoll.cs +++ b/BizHawk.Client.EmuHawk/CustomControls/InputRoll.cs @@ -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); }