Make tag editor expand all if holding shift while clicking the ... button

This commit is contained in:
Zode
2025-06-11 19:06:23 +03:00
committed by GitHub
parent eee4e55cf0
commit bed1f6e9cc

View File

@@ -604,6 +604,9 @@ namespace FlaxEditor.CustomEditors.Editors
root.SortChildrenRecursive();
root.Expand(true);
if (Input.GetKey(KeyboardKeys.Shift))
root.ExpandAll(true);
return menu;
}
}