diff --git a/BizHawk.Client.EmuHawk/CustomControls/InputRoll/InputRoll.cs b/BizHawk.Client.EmuHawk/CustomControls/InputRoll/InputRoll.cs index 391324a64b..e1d37bd7a7 100644 --- a/BizHawk.Client.EmuHawk/CustomControls/InputRoll/InputRoll.cs +++ b/BizHawk.Client.EmuHawk/CustomControls/InputRoll/InputRoll.cs @@ -975,6 +975,11 @@ namespace BizHawk.Client.EmuHawk if (_currentX != _previousX) { _columnResizing.Width += _currentX - _previousX; + if (_columnResizing.Width <= 0) + { + _columnResizing.Width = 1; + } + _columns.ColumnsChanged(); Refresh(); }