diff --git a/Filtration.Parser/Services/ItemFilterBlockTranslator.cs b/Filtration.Parser/Services/ItemFilterBlockTranslator.cs index bd49bb3..b8359ec 100644 --- a/Filtration.Parser/Services/ItemFilterBlockTranslator.cs +++ b/Filtration.Parser/Services/ItemFilterBlockTranslator.cs @@ -349,12 +349,6 @@ namespace Filtration.Parser.Services Shape = EnumHelper.GetEnumValueFromDescription(match.Groups[3].Value) }; - var themeComponent = _masterComponentCollection.AddComponent(ThemeComponentType.Icon, match.Groups[5].Value.Trim(), - blockItemValue.Size, blockItemValue.Color, blockItemValue.Shape); - if(match.Groups[4].Value == "#" && !string.IsNullOrWhiteSpace(match.Groups[5].Value)) - { - blockItemValue.ThemeComponent = themeComponent; - } block.BlockItems.Add(blockItemValue); themeComponentType = (int)ThemeComponentType.Icon; } diff --git a/Filtration/Filtration.nuspec b/Filtration/Filtration.nuspec index 92cc424..f3ceccc 100644 --- a/Filtration/Filtration.nuspec +++ b/Filtration/Filtration.nuspec @@ -17,6 +17,7 @@ * New buttons for adding/removing DisableDropSound from selected blocks have been added (#110) * The Enable/Disable Block toggle button is now visible on both the Regular Block Items and Appearance Block Items views * When there are too many block items to fit horizontally in a block a horizontal scrollbar will now appear +* Fixed an issue with MinimapIcon block items causing an "Unused Theme Components" message box to erroneously be shown when saving (#116) * Fixed the Advanced tab in the Color Picker in the Theme Editor not being clickable (#115) * Fixed the previously incorrect handling of DisableDropSound as a true/false value when in fact it is enabled/disabled purely by its presence or lack thereof in a block (#111) * Fixed the application freezing for a long period of time when Ctrl+A (Select All) is performed