From 634b05fc169e88899485ae6d61cf2479289113ad Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Sun, 14 Apr 2024 13:31:32 +0200 Subject: [PATCH] Fix code style --- 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 5a4905206..d3dc53611 100644 --- a/Source/Editor/CustomEditors/Editors/InputEditor.cs +++ b/Source/Editor/CustomEditors/Editors/InputEditor.cs @@ -38,7 +38,7 @@ namespace FlaxEditor.CustomEditors.Editors _comboBox.SelectedIndexChanged += OnSelectedIndexChanged; } - private void OnSetupContextMenu(PropertyNameLabel label, ContextMenu menu, CustomEditor linkededitor) + private void OnSetupContextMenu(PropertyNameLabel label, ContextMenu menu, CustomEditor linkedEditor) { var button = menu.AddButton("Set to null"); button.Clicked += () => _comboBox.SelectedItem = null; @@ -106,7 +106,7 @@ namespace FlaxEditor.CustomEditors.Editors _comboBox.SelectedIndexChanged += OnSelectedIndexChanged; } - private void OnSetupContextMenu(PropertyNameLabel label, ContextMenu menu, CustomEditor linkededitor) + private void OnSetupContextMenu(PropertyNameLabel label, ContextMenu menu, CustomEditor linkelinkedEditordeditor) { var button = menu.AddButton("Set to null"); button.Clicked += () => _comboBox.SelectedItem = null;