diff options
author | Pablo Andres Fuente <pfuente@heroku.com> | 2024-09-18 14:01:10 -0300 |
---|---|---|
committer | Pablo Andres Fuente <pfuente@heroku.com> | 2024-09-23 17:11:02 -0300 |
commit | 9c0afbb15ca301ae85264e79e052f106cbead344 (patch) | |
tree | e0680859e4d0b471c6a819b24ebb019efd45da2f /scene/gui/tree.cpp | |
parent | 694d3c2930bdfb43fd93e1e6641f66c4f19a5c77 (diff) | |
download | redot-engine-9c0afbb15ca301ae85264e79e052f106cbead344.tar.gz |
Fixing TreeItem get_prev_xxx methods when p_wrap is true
Fixes #85032
The code that fix the issue is courtesy of @Jesusemora, I just added
unit tests for it and did a rebase with the latest changes on master.
Co-authored-by: Jesusemora <32273722+Jesusemora@users.noreply.github.com>
Diffstat (limited to 'scene/gui/tree.cpp')
-rw-r--r-- | scene/gui/tree.cpp | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/scene/gui/tree.cpp b/scene/gui/tree.cpp index e4f52ee8ee..5e6ba95363 100644 --- a/scene/gui/tree.cpp +++ b/scene/gui/tree.cpp @@ -923,19 +923,17 @@ TreeItem *TreeItem::_get_prev_in_tree(bool p_wrap, bool p_include_invisible) { if (!prev_item) { current = current->parent; - if (current == tree->root && tree->hide_root) { - return nullptr; - } else if (!current) { - if (p_wrap) { - current = this; - TreeItem *temp = get_next_visible(); - while (temp) { - current = temp; - temp = temp->get_next_visible(); - } - } else { + if (!current || (current == tree->root && tree->hide_root)) { + if (!p_wrap) { return nullptr; } + // Wrap around to the last visible item. + current = this; + TreeItem *temp = get_next_visible(); + while (temp) { + current = temp; + temp = temp->get_next_visible(); + } } } else { current = prev_item; |