浏览代码

Merge pull request #10556 from marcelofg55/master

Add missing NULL check for the new show_about() call
Rémi Verschelde 8 年之前
父节点
当前提交
eb238a04da
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      scene/main/scene_tree.cpp

+ 1 - 1
scene/main/scene_tree.cpp

@@ -630,7 +630,7 @@ void SceneTree::_notification(int p_notification) {
 		case NOTIFICATION_WM_ABOUT: {
 
 #ifdef TOOLS_ENABLED
-			if (Engine::get_singleton()->is_editor_hint()) {
+			if (EditorNode::get_singleton()) {
 				EditorNode::get_singleton()->show_about();
 			} else {
 #endif