Fix tree node navigation with key arrows to be more usable for deep hierarchies

This commit is contained in:
Wojciech Figat
2021-12-07 14:59:22 +01:00
parent 1cc26c871d
commit 983d5dee31
2 changed files with 17 additions and 25 deletions

View File

@@ -20,6 +20,7 @@ namespace FlaxEditor.SceneGraph
protected RootNode()
: base(null, Guid.NewGuid())
{
_treeNode.AutoFocus = false;
}
/// <summary>
@@ -29,6 +30,7 @@ namespace FlaxEditor.SceneGraph
protected RootNode(Guid id)
: base(null, id)
{
_treeNode.AutoFocus = false;
}
/// <summary>