Fix app filter using wildcards (#3985)

This commit is contained in:
El Thoro
2025-06-09 02:50:07 +02:00
committed by GitHub
parent a56beb34d3
commit 128b58328d

View File

@@ -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<DesktopAppData> apps;