浏览代码

Fix "blocked > 0" error when selecting an item in the Search Help dialog

Michael Alexsander Silva Dias 6 年之前
父节点
当前提交
133031c65e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      editor/editor_help_search.cpp

+ 1 - 1
editor/editor_help_search.cpp

@@ -130,7 +130,7 @@ void EditorHelpSearch::_notification(int p_what) {
 		} break;
 		case NOTIFICATION_POPUP_HIDE: {
 
-			results_tree->clear();
+			results_tree->call_deferred("clear"); // Wait for the Tree's mouse event propagation.
 			get_ok()->set_disabled(true);
 			EditorSettings::get_singleton()->set_project_metadata("dialog_bounds", "search_help", get_rect());
 		} break;