Add support for multi-select disable.

This commit is contained in:
Chandler Cox
2025-07-17 23:09:36 -05:00
parent 2546e19d65
commit fc46219a82

View File

@@ -415,7 +415,7 @@ namespace FlaxEditor.GUI.Tree
// Up
List<TreeNode> toSelect = new List<TreeNode>();
if (shiftDown)
if (shiftDown && _supportMultiSelect)
{
toSelect.AddRange(Selection);
}