Fixed bug with InputRoll selected rows drawing hidden columns.
This commit is contained in:
parent
d66181a597
commit
4834e31bb8
|
@ -459,7 +459,8 @@ namespace BizHawk.Client.EmuHawk
|
||||||
int lastRow = -1;
|
int lastRow = -1;
|
||||||
foreach (Cell cell in SelectedItems)
|
foreach (Cell cell in SelectedItems)
|
||||||
{
|
{
|
||||||
if (cell.RowIndex > _lastVisibleRow || cell.RowIndex < FirstVisibleRow)
|
if (cell.RowIndex > _lastVisibleRow || cell.RowIndex < FirstVisibleRow ||
|
||||||
|
!VisibleColumns.Contains(cell.Column))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
Cell relativeCell = new Cell
|
Cell relativeCell = new Cell
|
||||||
|
|
Loading…
Reference in New Issue