2
0
Эх сурвалжийг харах

Merge pull request #21046 from DualMatrix/recent_custom_type

Fixed custom nodes not working with favorites and recently used
Rémi Verschelde 7 жил өмнө
parent
commit
134d071ca7

+ 2 - 2
editor/create_dialog.cpp

@@ -585,7 +585,7 @@ void CreateDialog::_history_selected() {
 	if (!item)
 		return;
 
-	search_box->set_text(item->get_text(0));
+	search_box->set_text(item->get_text(0).get_slicec(' ', 0));
 	_update_search();
 }
 
@@ -595,7 +595,7 @@ void CreateDialog::_favorite_selected() {
 	if (!item)
 		return;
 
-	search_box->set_text(item->get_text(0));
+	search_box->set_text(item->get_text(0).get_slicec(' ', 0));
 	_update_search();
 }