From cff6943c3aca4d9e1954abbde3b1690b6433ba37 Mon Sep 17 00:00:00 2001 From: Harald Csaszar Date: Thu, 29 Aug 2024 17:44:36 +0200 Subject: [PATCH] [unity] Minor: fixed formatting or last commit 54e4630. --- .../Editor/spine-unity/Editor/Utility/SpineInspectorUtility.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spine-unity/Assets/Spine/Editor/spine-unity/Editor/Utility/SpineInspectorUtility.cs b/spine-unity/Assets/Spine/Editor/spine-unity/Editor/Utility/SpineInspectorUtility.cs index 4290fd2fa..f2360e2fa 100644 --- a/spine-unity/Assets/Spine/Editor/spine-unity/Editor/Utility/SpineInspectorUtility.cs +++ b/spine-unity/Assets/Spine/Editor/spine-unity/Editor/Utility/SpineInspectorUtility.cs @@ -159,7 +159,7 @@ namespace Spine.Unity.Editor { dotIndex = propertyPath.LastIndexOf('.', dotIndex - 1); if (dotIndex < 0) break; - newPropertyPath = propertyPath.Remove(dotIndex + 1) + propertyName; + newPropertyPath = propertyPath.Remove(dotIndex + 1) + propertyName; relativeProperty = property.serializedObject.FindProperty(newPropertyPath); } }