From 586e7351252b8c0a3c29b31e51c0959e76f4a531 Mon Sep 17 00:00:00 2001 From: Vincenzo Greco Date: Mon, 8 Jan 2018 11:44:56 +0100 Subject: [PATCH] Select root node if search_box is empty in create_dialog --- editor/create_dialog.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/editor/create_dialog.cpp b/editor/create_dialog.cpp index 2dfb01826a2..b2a8c7e72ef 100644 --- a/editor/create_dialog.cpp +++ b/editor/create_dialog.cpp @@ -312,6 +312,10 @@ void CreateDialog::_update_search() { } } + if (search_box->get_text() == "") { + to_select = root; + } + if (to_select) { to_select->select(0); search_options->scroll_to_item(to_select);