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
97
97
dotnet_diagnostic.IDE0074.severity = suggestion
98
98
# Use pattern matching
99
99
dotnet_diagnostic.IDE0078.severity = suggestion
100
+ # Suppression operator has no effect and can be misinterpreted
101
+ dotnet_diagnostic.IDE0080.severity = warning
100
102
# Convert typeof to nameof
101
103
dotnet_diagnostic.IDE0082.severity = warning
102
104
# Use pattern matching (not operator)
Original file line number Diff line number Diff line change @@ -1151,7 +1151,7 @@ protected override void OnMouseDown(MouseEventArgs e)
1151
1151
{
1152
1152
// do marker drag here
1153
1153
}
1154
- else if ( ModifierKeys is Keys . Shift && CurrentCell . Column ! is { Type : ColumnType . Text } col )
1154
+ else if ( ModifierKeys is Keys . Shift && CurrentCell . Column is { Type : ColumnType . Text } col )
1155
1155
{
1156
1156
if ( _selectedItems . Count is not 0 )
1157
1157
{
You can’t perform that action at this time.
0 commit comments