Tree: fix RMB click collapses next item

This commit is contained in:
Poommetee Ketson 2017-08-26 23:55:43 +07:00
parent 1894157c9f
commit 5e889cce4f

View file

@ -2473,10 +2473,11 @@ void Tree::_gui_input(Ref<InputEvent> p_event) {
Point2 pos = b->get_position() - bg->get_offset();
cache.click_type = Cache::CLICK_NONE;
if (show_column_titles && b->get_button_index() == BUTTON_LEFT) {
if (show_column_titles) {
pos.y -= _get_title_button_height();
if (pos.y < 0) {
if (b->get_button_index() == BUTTON_LEFT) {
pos.x += cache.offset.x;
int len = 0;
for (int i = 0; i < columns.size(); i++) {
@ -2491,6 +2492,7 @@ void Tree::_gui_input(Ref<InputEvent> p_event) {
break;
}
}
}
break;
}
}