You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-10 13:00:37 +00:00
Merge pull request #71024 from marzecdawid/better-cursor-behaviour-in-tree-with-ctrl
Fix cursor behavior for multiselect in Tree while holding CTRL
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user