mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Fix remote tree max selection warning not showing properly
This commit is contained in:
parent
a3b42d85d2
commit
87b62b9897
1 changed files with 1 additions and 4 deletions
|
|
@ -95,10 +95,7 @@ void EditorDebuggerTree::_scene_tree_selection_changed(TreeItem *p_item, int p_c
|
|||
if (inspected_object_ids.size() == (int)EDITOR_GET("debugger/max_node_selection")) {
|
||||
selection_surpassed_limit = true;
|
||||
p_item->deselect(0);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!inspected_object_ids.has(id)) {
|
||||
} else if (!inspected_object_ids.has(id)) {
|
||||
inspected_object_ids.append(id);
|
||||
}
|
||||
} else if (inspected_object_ids.has(id)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue