Skip to content
Snippets Groups Projects
Commit 141e5556 authored by kh1's avatar kh1
Browse files

Lower the count to spead up search.

Reviewed-by: ck
parent 679ccc3b
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ QList<FilterEntry> HelpIndexFilter::matchesFor(const QString &entry)
{
QStringList keywords;
if (entry.length() < 2)
keywords = Core::HelpManager::instance()->findKeywords(entry, 300);
keywords = Core::HelpManager::instance()->findKeywords(entry, 200);
else
keywords = Core::HelpManager::instance()->findKeywords(entry);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment