Calculate __focus_rect when TreeItem is focused
This commit is contained in:
parent
1c2766e240
commit
2035992a07
|
@ -1388,7 +1388,7 @@ int Tree::draw_item(const Point2i &p_pos, const Point2 &p_draw_ofs, const Size2
|
|||
}
|
||||
}
|
||||
|
||||
if ((select_mode == SELECT_ROW && selected_item == p_item) || p_item->cells[i].selected) {
|
||||
if ((select_mode == SELECT_ROW && selected_item == p_item) || p_item->cells[i].selected || !p_item->has_meta("__focus_rect")) {
|
||||
Rect2i r(cell_rect.position, cell_rect.size);
|
||||
|
||||
p_item->set_meta("__focus_rect", Rect2(r.position, r.size));
|
||||
|
|
Loading…
Reference in New Issue