Explorar o código

Fixed crash when pressing down key on empty Tree

Fixes #33554
PouleyKetchoupp %!s(int64=5) %!d(string=hai) anos
pai
achega
47a4ca0022
Modificáronse 1 ficheiros con 3 adicións e 2 borrados
  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();