File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Packages/com.unity.inputsystem
InputSystem/Editor/UITKAssetEditor Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
8
8
Due to package verification, the latest version below is the unpublished version and the date is meaningless.
9
9
however, it has to be formatted properly to pass verification tests.
10
10
11
- ## [ Unreleased] - YYYY-MM-DD
11
+ ## [ 1.8.1] - 2024-03-14
12
+
13
+ ### Fixed
14
+ - NullReferenceException thrown when editing a binding path in InputActionAsset windows.
12
15
13
16
## [ 1.8.0] - 2024-03-12
14
17
Original file line number Diff line number Diff line change @@ -112,6 +112,9 @@ void SaveAssetOnFocusLost()
112
112
113
113
public static void SetIMGUIDropdownVisible ( bool visible , bool optionWasSelected )
114
114
{
115
+ if ( m_ActiveSettingsProvider == null )
116
+ return ;
117
+
115
118
// If we selected an item from the dropdown, we *should* still be focused on this settings window - but
116
119
// since the IMGUI dropdown is technically a separate window, we have to refocus manually.
117
120
//
You can’t perform that action at this time.
0 commit comments