diff --git a/Editor/Debugger/Inspector/DebuggerComponentInspector.cs b/Editor/Debugger/Inspector/DebuggerComponentInspector.cs index 4a92e75..f9243f6 100644 --- a/Editor/Debugger/Inspector/DebuggerComponentInspector.cs +++ b/Editor/Debugger/Inspector/DebuggerComponentInspector.cs @@ -1,5 +1,6 @@ using AlicizaX.Debugger.Runtime; using UnityEditor; +using UnityEngine; namespace AlicizaX.Debugger.Editor { @@ -21,7 +22,7 @@ namespace AlicizaX.Debugger.Editor { serializedObject.Update(); EditorGUILayout.PropertyField(_activeWindowProperty); - EditorGUILayout.PropertyField(_enableFloatingToggleSnapProperty); + EditorGUILayout.PropertyField(_enableFloatingToggleSnapProperty,new GUIContent("Enable Snap")); EditorGUILayout.Slider(_windowOpacityProperty, 0.2f, 1f); serializedObject.ApplyModifiedProperties(); }