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()
925925 selectedNodeViews . Add ( v ) ;
926926 }
927927
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 ;
934931 }
935932
936933 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.
88
99### Fixed
1010- Fixed fields with [ Settings] attribute not showing up with inheritance.
11+ - Fixed selection still active when selecting nodes without inspector fields.
1112
1213## [ 1.3.0]
1314
You can’t perform that action at this time.
0 commit comments