Merge pull request #55791 from kleonc/tree-dont-consume-mouse-if-collapser-not-visible

This commit is contained in:
Rémi Verschelde 2022-01-05 10:56:50 +01:00 committed by GitHub
commit 319c442771
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2318,12 +2318,9 @@ int Tree::propagate_mouse_event(const Point2i &p_pos, int x_ofs, int y_ofs, int
return -1;
}
if (!p_item->disable_folding && !hide_folding && (p_pos.x >= x_ofs && p_pos.x < (x_ofs + cache.item_margin))) {
if (p_item->first_child) {
p_item->set_collapsed(!p_item->is_collapsed());
}
return -1; //handled!
if (!p_item->disable_folding && !hide_folding && p_item->first_child && (p_pos.x >= x_ofs && p_pos.x < (x_ofs + cache.item_margin))) {
p_item->set_collapsed(!p_item->is_collapsed());
return -1;
}
int x = p_pos.x;