Skip to content

Commit e2816a5

Browse files
committed
Address review comments.
1 parent 6554692 commit e2816a5

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

Rubberduck.Core/UI/Inspections/InspectionResultsViewModel.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ public enum InspectionResultsFilter
2929
{
3030
None = 0,
3131
Hint = 1,
32-
Suggestion = 1 << 2,
33-
Warning = 1 << 3,
34-
Error = 1 << 4,
32+
Suggestion = 1 << 1,
33+
Warning = 1 << 2,
34+
Error = 1 << 3,
3535
All = Hint | Suggestion | Warning | Error
3636
}
3737

-743 Bytes
Binary file not shown.

Rubberduck.Resources/Rubberduck.Resources.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212
<Resource Include="**\*.bmp" Exclude="$(IntermediateOutputPath)\**" />
1313
<Resource Include="**\*.txt" Exclude="$(IntermediateOutputPath)\**" />
1414
</ItemGroup>
15-
<ItemGroup>
16-
<Resource Remove="Resources\light-bulb.png" />
17-
</ItemGroup>
1815
<ItemGroup>
1916
<Resource Update="**\*.resx">
2017
<Generator>PublicResXFileCodeGenerator</Generator>

0 commit comments

Comments
 (0)