Change wording to "Set To Null"

This commit is contained in:
Chandler Cox
2023-09-20 19:08:36 -05:00
parent dfb9f1985f
commit f315286e26

View File

@@ -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;
}