Merge pull request #21046 from DualMatrix/recent_custom_type

Fixed custom nodes not working with favorites and recently used
This commit is contained in:
Rémi Verschelde 2018-08-16 18:28:03 +02:00 committed by GitHub
commit 134d071ca7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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();
}