Skip to content

Commit 1b6175e

Browse files
Add formatting.
1 parent ce32d45 commit 1b6175e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Packages/com.unity.inputsystem/InputSystem/Editor/UITKAssetEditor/Commands/ControlSchemeCommands.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public static Command ResetSelectedControlScheme()
148148
SerializedProperty controlSchemeSerializedProperty = null;
149149
var serializedProperty = state.serializedObject
150150
.FindProperty(nameof(InputActionAsset.m_ControlSchemes));
151-
151+
152152
if (state.selectedControlSchemeIndex < serializedProperty.arraySize)
153153
{
154154
controlSchemeSerializedProperty = state.selectedControlSchemeIndex == -1 ? null :

Packages/com.unity.inputsystem/InputSystem/Editor/UITKAssetEditor/Views/InputActionsEditorView.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ internal class InputActionsEditorView : ViewBase<InputActionsEditorView.ViewStat
2424
private readonly ToolbarButton m_SaveButton;
2525

2626
private readonly Action m_SaveAction;
27-
27+
2828
private ControlSchemesView m_ControlSchemesView;
2929

3030
public InputActionsEditorView(VisualElement root, StateContainer stateContainer, bool isProjectSettings,
@@ -259,7 +259,7 @@ private void ShowControlSchemeEditor(VisualElement parent, bool updateExisting =
259259
m_ControlSchemesView = null;
260260
};
261261
}
262-
262+
263263
private void SelectControlScheme(int controlSchemeIndex)
264264
{
265265
Dispatch(ControlSchemeCommands.SelectControlScheme(controlSchemeIndex));

0 commit comments

Comments
 (0)