diff --git a/runners/shell/shellrunner.cpp b/runners/shell/shellrunner.cpp --- a/runners/shell/shellrunner.cpp +++ b/runners/shell/shellrunner.cpp @@ -65,10 +65,10 @@ const QString term = context.query(); Plasma::QueryMatch match(this); match.setId(term); - match.setType(Plasma::QueryMatch::ExactMatch); + match.setType(Plasma::QueryMatch::PossibleMatch); match.setIconName(QStringLiteral("system-run")); match.setText(i18n("Run %1", term)); - match.setRelevance(0.7); + match.setRelevance(0.6); context.addMatch(match); } } diff --git a/runners/windows/windowsrunner.cpp b/runners/windows/windowsrunner.cpp --- a/runners/windows/windowsrunner.cpp +++ b/runners/windows/windowsrunner.cpp @@ -284,11 +284,11 @@ QString className = QString::fromUtf8(info.windowClassName()); if (info.name().startsWith(term, Qt::CaseInsensitive) || className.startsWith(term, Qt::CaseInsensitive)) { - matches << windowMatch(info, action, 0.8, Plasma::QueryMatch::ExactMatch); + matches << windowMatch(info, action, 0.9, Plasma::QueryMatch::ExactMatch); } else if ((info.name().contains(term, Qt::CaseInsensitive) || className.contains(term, Qt::CaseInsensitive)) && actionSupported(info, action)) { - matches << windowMatch(info, action, 0.7, Plasma::QueryMatch::PossibleMatch); + matches << windowMatch(info, action, 0.8, Plasma::QueryMatch::PossibleMatch); } }