You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/BizHawk.Client.EmuHawk/CustomControls/InputRoll/InputRoll.cs
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1876,7 +1876,11 @@ private Cell CalculatePointedCell(int x, int y)
1876
1876
}
1877
1877
}
1878
1878
1879
-
if(!(IsPaintDown||RightButtonHeld)&&newCell.RowIndex<=-1)// -2 if we're entering from the top
1879
+
// We don't show the pointed cell as being a column header (RowIndex = null) if we are holding right mouse button. (This allows right-click dragging to rows above the top one.)
1880
+
// hack: MouseMove events do not happen while a context menu is open, leading to a column right-click not working if a context menu was already open.
1881
+
// we solve this by only considering right button if the prior cell has a row value
0 commit comments