File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
src/BizHawk.Client.EmuHawk/CustomControls/InputRoll Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,8 @@ dotnet_diagnostic.IDE0071.severity = suggestion
9797dotnet_diagnostic.IDE0074.severity = suggestion
9898# Use pattern matching
9999dotnet_diagnostic.IDE0078.severity = suggestion
100+ # Suppression operator has no effect and can be misinterpreted
101+ dotnet_diagnostic.IDE0080.severity = warning
100102# Convert typeof to nameof
101103dotnet_diagnostic.IDE0082.severity = warning
102104# Use pattern matching (not operator)
Original file line number Diff line number Diff line change @@ -1150,7 +1150,7 @@ protected override void OnMouseDown(MouseEventArgs e)
11501150 {
11511151 // do marker drag here
11521152 }
1153- else if ( ModifierKeys is Keys . Shift && CurrentCell . Column ! is { Type : ColumnType . Text } col )
1153+ else if ( ModifierKeys is Keys . Shift && CurrentCell . Column is { Type : ColumnType . Text } col )
11541154 {
11551155 if ( _selectedItems . Count is not 0 )
11561156 {
You can’t perform that action at this time.
0 commit comments