Fixed crash when pressing down key on empty Tree

Fixes #33554

(cherry picked from commit 47a4ca0022)
This commit is contained in:
PouleyKetchoupp 2019-11-12 08:15:29 +01:00 committed by Rémi Verschelde
parent 8851026e8a
commit 9360b23544
1 changed files with 3 additions and 2 deletions

View File

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