浏览代码

CreateDialog: select root if search exactly match

(cherry picked from commit 9fb90d7aea70a645bcc3987387f4cd048b8413fe)
Poommetee Ketson 8 年之前
父节点
当前提交
76955cc187
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      editor/create_dialog.cpp

+ 1 - 1
editor/create_dialog.cpp

@@ -222,7 +222,7 @@ void CreateDialog::_update_search() {
 	}
 
 	List<StringName>::Element *I = type_list.front();
-	TreeItem *to_select = NULL;
+	TreeItem *to_select = search_box->get_text() == base_type ? root : NULL;
 
 	for (; I; I = I->next()) {