From 128b58328dc8a9b59a65610c6eb7dbd1711f5bd2 Mon Sep 17 00:00:00 2001 From: El Thoro Date: Mon, 9 Jun 2025 02:50:07 +0200 Subject: [PATCH] Fix app filter using wildcards (#3985) --- src/tools/launcher/applauncherwidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/launcher/applauncherwidget.cpp b/src/tools/launcher/applauncherwidget.cpp index 93ca2637..08d34a31 100644 --- a/src/tools/launcher/applauncherwidget.cpp +++ b/src/tools/launcher/applauncherwidget.cpp @@ -177,7 +177,7 @@ void AppLauncherWidget::searchChanged(const QString& text) m_filterList->show(); m_filterList->clear(); const QRegularExpression regexp( - QRegularExpression::wildcardToRegularExpression(text), + QRegularExpression::wildcardToRegularExpression("*" + text + "*"), QRegularExpression::CaseInsensitiveOption); QVector apps;