2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-22 18:37:09 +00:00

[Improvement] Theme editor search improvements

This commit is contained in:
RadRussianRus 2022-09-11 05:25:12 +03:00 committed by Eric Kotato
parent 3566949305
commit c03f13fdd8

View File

@ -63,7 +63,7 @@ public:
}
bool searchWordsContain(const QString &needle) const {
for (const auto &word : _searchWords) {
if (word.startsWith(needle)) {
if (word.contains(needle, Qt::CaseInsensitive)) {
return true;
}
}