浏览代码

Fixed crash when pressing down key on empty Tree

Fixes #33554
PouleyKetchoupp 5 年之前
父节点
当前提交
47a4ca0022
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 3 2
      scene/gui/tree.cpp

+ 3 - 2
scene/gui/tree.cpp

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