Toolbox category PropertyGroupDescription localized string
Hello!
When using gemini on a computer with german language, the toolboxitem categories disappear.
In ToolboxViewModel when adding PropertyGroupDescription for _items the string is based on a localized string, but is it not the same in all languages, from the property name of ToolboxItem.Category?
I have changed:
groupedItems.GroupDescriptions.Add(new PropertyGroupDescription(Resources.ToolboxCategory));
to:
groupedItems.GroupDescriptions.Add(new PropertyGroupDescription("Category"));
Which fixes the problem for me.
Is there any particual reason for looking up the localized string?
I think this happened unintentionally and can't think of any reason it was changed on purpose.