From afb1dd1e4c7de5b2b6942b4019a553be72e12a6f Mon Sep 17 00:00:00 2001 From: Paulb23 Date: Sat, 16 Sep 2017 13:14:22 +0000 Subject: [PATCH] Fixed quick open not showing enties with no search text, issue 11277 --- editor/quick_open.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/quick_open.cpp b/editor/quick_open.cpp index b92ebed1676d..4bcbe073eeeb 100644 --- a/editor/quick_open.cpp +++ b/editor/quick_open.cpp @@ -189,7 +189,7 @@ Vector > > EditorQuickOpen::_sort_fs(Vector > > sorted_list; if (search_text == String() || list.size() == 0) - return sorted_list; + return list; Vector scores; scores.resize(list.size());