Skip to content

Commit 1141a33

Browse files
committed
Revert to only images for IgnoreOnce
The converter somhow does not work properly otherwise.
1 parent 7dbfd20 commit 1141a33

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Rubberduck.Core/UI/Inspections/QuickFixImageSourceConverter.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ public class QuickFixImageSourceConverter : ImageSourceConverter
1313
public override object Convert(object value, Type targetType, object parameter, CultureInfo culture)
1414
{
1515
if (value != null
16-
&& (value.GetType().Name.Equals("IgnoreOnceQuickFix")
17-
|| value.GetType().Name.Equals("IgnoreInModuleQuickFix")))
16+
&& value.GetType().Name.Equals("IgnoreOnceQuickFix"))
1817
{
1918
return IgnoreOnceIcon;
2019
}

0 commit comments

Comments
 (0)