Fixed crash when pressing down key on empty Tree

Fixes #33554
This commit is contained in:
PouleyKetchoupp 2019-11-12 08:15:29 +01:00
parent 5f4ab5c77d
commit 47a4ca0022
1 changed files with 3 additions and 2 deletions

View File

@ -2224,8 +2224,9 @@ void Tree::_go_down() {
TreeItem *next = NULL;
if (!selected_item) {
if (root) {
next = hide_root ? root->get_next_visible() : root;
selected_item = 0;
}
} else {
next = selected_item->get_next_visible();