From bed1f6e9cc665bc0d876d47dd388bfb915edff7d Mon Sep 17 00:00:00 2001 From: Zode Date: Wed, 11 Jun 2025 19:06:23 +0300 Subject: [PATCH] Make tag editor expand all if holding shift while clicking the ... button --- Source/Editor/CustomEditors/Editors/TagEditor.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Editor/CustomEditors/Editors/TagEditor.cs b/Source/Editor/CustomEditors/Editors/TagEditor.cs index 79f700a2b..60639a8cb 100644 --- a/Source/Editor/CustomEditors/Editors/TagEditor.cs +++ b/Source/Editor/CustomEditors/Editors/TagEditor.cs @@ -604,6 +604,9 @@ namespace FlaxEditor.CustomEditors.Editors root.SortChildrenRecursive(); root.Expand(true); + if (Input.GetKey(KeyboardKeys.Shift)) + root.ExpandAll(true); + return menu; } }