diff --git a/src/BizHawk.Client.EmuHawk/CustomControls/InputRoll/InputRoll.Drawing.cs b/src/BizHawk.Client.EmuHawk/CustomControls/InputRoll/InputRoll.Drawing.cs index 4d7371bc52..7fd312c417 100644 --- a/src/BizHawk.Client.EmuHawk/CustomControls/InputRoll/InputRoll.Drawing.cs +++ b/src/BizHawk.Client.EmuHawk/CustomControls/InputRoll/InputRoll.Drawing.cs @@ -448,7 +448,7 @@ namespace BizHawk.Client.EmuHawk // Draw Gridlines and background colors using QueryItemBkColor. private void DrawBg(List visibleColumns, Rectangle rect, int firstVisibleRow, int lastVisibleRow) { - if (QueryItemBkColor != null) + if (QueryItemBkColor is not null || QueryRowBkColor is not null) { DoBackGroundCallback(visibleColumns, rect, firstVisibleRow, lastVisibleRow); }