Fix errors while deselecting all tree items; issue #65185
This commit is contained in:
parent
140f039547
commit
d4d5df2314
1 changed files with 3 additions and 1 deletions
|
@ -4216,7 +4216,9 @@ Tree::SelectMode Tree::get_select_mode() const {
|
|||
void Tree::deselect_all() {
|
||||
TreeItem *item = get_next_selected(get_root());
|
||||
while (item) {
|
||||
item->deselect(selected_col);
|
||||
for (int i = 0; i < columns.size(); i++) {
|
||||
item->deselect(i);
|
||||
}
|
||||
TreeItem *prev_item = item;
|
||||
item = get_next_selected(get_root());
|
||||
ERR_FAIL_COND(item == prev_item);
|
||||
|
|
Loading…
Reference in a new issue