1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-09 12:50:35 +00:00

Fix cursor behaviour in Tree while holding CTRL

(cherry picked from commit 9abbdea95e)
This commit is contained in:
Dawid Marzec
2023-01-06 20:19:34 +01:00
committed by Yuri Sizov
parent 1875ecb776
commit 87b4143f3b
2 changed files with 29 additions and 28 deletions

View File

@@ -1114,9 +1114,15 @@ void SceneTreeEditor::_update_selection(TreeItem *item) {
}
if (editor_selection->is_selected(n)) {
item->select(0);
if (!item->is_selected(0)) {
item->select(0);
}
} else {
item->deselect(0);
if (item->is_selected(0)) {
TreeItem *previous_cursor_item = tree->get_selected();
item->deselect(0);
previous_cursor_item->set_as_cursor(0);
}
}
TreeItem *c = item->get_first_child();