From f315286e2602ae873dfb79607901feb39dfe6ed7 Mon Sep 17 00:00:00 2001 From: Chandler Cox Date: Wed, 20 Sep 2023 19:08:36 -0500 Subject: [PATCH] Change wording to "Set To Null" --- Source/Editor/CustomEditors/Editors/InputEditor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Editor/CustomEditors/Editors/InputEditor.cs b/Source/Editor/CustomEditors/Editors/InputEditor.cs index 7a356c6cd..7b2682a84 100644 --- a/Source/Editor/CustomEditors/Editors/InputEditor.cs +++ b/Source/Editor/CustomEditors/Editors/InputEditor.cs @@ -39,7 +39,7 @@ namespace FlaxEditor.CustomEditors.Editors private void OnSetupContextMenu(PropertyNameLabel label, ContextMenu menu, CustomEditor linkededitor) { - var button = menu.AddButton("Reset to null"); + var button = menu.AddButton("Set to null"); button.Clicked += () => _comboBox.SelectedItem = null; } @@ -107,7 +107,7 @@ namespace FlaxEditor.CustomEditors.Editors private void OnSetupContextMenu(PropertyNameLabel label, ContextMenu menu, CustomEditor linkededitor) { - var button = menu.AddButton("Reset to null"); + var button = menu.AddButton("Set to null"); button.Clicked += () => _comboBox.SelectedItem = null; }