File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
Assets/com.alelievr.NodeGraphProcessor/Editor/Views Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -925,12 +925,9 @@ public void UpdateNodeInspectorSelection()
925
925
selectedNodeViews . Add ( v ) ;
926
926
}
927
927
928
- if ( selectedNodeViews . Count > 0 )
929
- {
930
- nodeInspector . UpdateSelectedNodes ( selectedNodeViews ) ;
931
- if ( Selection . activeObject != nodeInspector )
932
- Selection . activeObject = nodeInspector ;
933
- }
928
+ nodeInspector . UpdateSelectedNodes ( selectedNodeViews ) ;
929
+ if ( Selection . activeObject != nodeInspector && selectedNodeViews . Count > 0 )
930
+ Selection . activeObject = nodeInspector ;
934
931
}
935
932
936
933
public BaseNodeView AddNode ( BaseNode node )
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
8
8
9
9
### Fixed
10
10
- Fixed fields with [ Settings] attribute not showing up with inheritance.
11
+ - Fixed selection still active when selecting nodes without inspector fields.
11
12
12
13
## [ 1.3.0]
13
14
You can’t perform that action at this time.
0 commit comments