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 bddebd1 commit 0b8e94cCopy full SHA for 0b8e94c
Editor/TypeDropdown/SelectionTree.cs
@@ -3,7 +3,6 @@
3
using System;
4
using System.Collections.Generic;
5
using System.Linq;
6
- using SolidUtilities.Editor.Extensions;
7
using SolidUtilities.Editor.Helpers;
8
using SolidUtilities.Extensions;
9
using SolidUtilities.Helpers;
@@ -62,7 +61,9 @@ public SelectionNode SelectedNode
62
61
set
63
{
64
_selectedNode = value;
65
- Event.current.Use();
+
+ if (Event.current.type != EventType.Layout)
66
+ Event.current.Use();
67
}
68
69
0 commit comments