diff --git a/SimplePartFilter.cs b/SimplePartFilter.cs index a8b6aa1..5b4bcdd 100644 --- a/SimplePartFilter.cs +++ b/SimplePartFilter.cs @@ -28,7 +28,7 @@ public abstract class SimplePartFilter : MonoBehaviour { List modules; protected List MODULES { get { return modules; } } - protected string CATEGORY = "Filter by function"; + protected string CATEGORY = "Filter by Function"; protected string SUBCATEGORY = ""; protected string FOLDER = ""; protected string ICON = ""; @@ -53,7 +53,7 @@ void set_modules_icon(Icon icon) if(modules != null && modules.Count > 0) { PartCategorizer.Instance.filters - .Find(f => f.button.categoryName == "Filter by module") + .Find(f => f.button.categoryName == "Filter by Module") .subcategories.FindAll(s => modules.Any(m => m == s.button.categoryName)) .ForEach(c => c.button.SetIcon(icon)); }