There was an error while loading. Please reload this page.
1 parent 9d8cba1 commit 3b42394Copy full SHA for 3b42394
1 file changed
src/query/QueryProcessor.cpp
@@ -107,8 +107,11 @@ void CQueryProcessor::process() {
107
} else
108
FINDER = m_overrideFinder;
109
110
- if (query.empty() && !m_overrideFinder)
+ if (query.empty() && !m_overrideFinder) {
111
+ if (g_ui)
112
+ g_ui->m_backend->addIdle([] mutable { g_ui->updateResults({}); });
113
return;
114
+ }
115
116
auto RESULTS = FINDER ? FINDER->getResultsForQuery(eat ? query.substr(1) : query) : std::vector<SFinderResult>{};
117
0 commit comments