From 9faf9e43fbbf00ec312c59754c3261efa386d6d6 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Fri, 9 Jun 2023 17:15:06 +0200 Subject: [PATCH] Codestyle fix #1118 --- Source/Editor/CustomEditors/Editors/Vector3Editor.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/Editor/CustomEditors/Editors/Vector3Editor.cs b/Source/Editor/CustomEditors/Editors/Vector3Editor.cs index 496884bc3..c3edd3913 100644 --- a/Source/Editor/CustomEditors/Editors/Vector3Editor.cs +++ b/Source/Editor/CustomEditors/Editors/Vector3Editor.cs @@ -122,7 +122,7 @@ namespace FlaxEditor.CustomEditors.Editors { if (IsSetBlocked) return; - + var xValue = XElement.ValueBox.Value; var yValue = YElement.ValueBox.Value; var zValue = ZElement.ValueBox.Value; @@ -162,7 +162,6 @@ namespace FlaxEditor.CustomEditors.Editors xValue = NewLinkedValue(xValue, valueRatio); yValue = NewLinkedValue(yValue, valueRatio); break; - default: break; } }