From 99b4449fa189acf8f27d9b8fc328f7b6b7c76b54 Mon Sep 17 00:00:00 2001 From: Abdiel Lopez <48071553+PaperPrototype@users.noreply.github.com> Date: Sun, 19 Apr 2026 13:49:04 -0400 Subject: [PATCH] Update PropertyGrid.cs --- Prowl.Editor/Widgets/PropertyGrid.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);