diff --git a/Prowl.Editor/Widgets/PropertyGrid.cs b/Prowl.Editor/Widgets/PropertyGrid.cs index 2624b1467..6f34f4a17 100644 --- a/Prowl.Editor/Widgets/PropertyGrid.cs +++ b/Prowl.Editor/Widgets/PropertyGrid.cs @@ -285,7 +285,7 @@ static void DrawTypePicker(Paper paper, string id, Type baseType, object? curren int selectedIndex = currentType != null ? Array.IndexOf(types, currentType) + 1 : 0; var names = types.Select(t => t.Name).Prepend("(null)").ToArray(); - EditorGUI.Dropdown(paper, $"{id}_dd", "Type", selectedIndex, names) + EditorGUI.Dropdown(paper, $"{id}_dd", "Type", selectedIndex, names, true) .OnValueChanged(idx => { if (idx == 0) onChange(null);