We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e89a4b8 commit c869f17Copy full SHA for c869f17
Runtime/Scripts/BugReportUI.cs
@@ -130,8 +130,8 @@ void OnEnable()
130
#if ENABLE_INPUT_SYSTEM
131
if (IsNewInputSystemEnabled())
132
{
133
- shortcutAction.Enable();
134
- shortcutAction.performed += OnShortcutActionPerformed;
+ ShortcutAction.Enable();
+ ShortcutAction.performed += OnShortcutActionPerformed;
135
}
136
#endif
137
@@ -141,8 +141,8 @@ void OnDisable()
141
142
143
144
- shortcutAction.performed -= OnShortcutActionPerformed;
145
- shortcutAction.Disable();
+ ShortcutAction.performed -= OnShortcutActionPerformed;
+ ShortcutAction.Disable();
146
147
148
0 commit comments