Преглед изворни кода

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();