Tree: Fix offset calculation when there are hidden items
This commit is contained in:
parent
6e0c7d6a98
commit
a083c85521
1 changed files with 2 additions and 2 deletions
|
@ -4594,8 +4594,8 @@ int Tree::get_item_offset(TreeItem *p_item) const {
|
|||
return ofs;
|
||||
}
|
||||
|
||||
ofs += compute_item_height(it);
|
||||
if (it != root || !hide_root) {
|
||||
if ((it != root || !hide_root) && it->is_visible()) {
|
||||
ofs += compute_item_height(it);
|
||||
ofs += theme_cache.v_separation;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue