[Scummvm-git-logs] scummvm master -> 04a43695e79a2a6385e3460b4a9982482941b0e3

sev- sev at scummvm.org
Fri Nov 12 14:38:34 UTC 2021


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
04a43695e7 GUI: Use filtered search in GroupedList


Commit: 04a43695e79a2a6385e3460b4a9982482941b0e3
    https://github.com/scummvm/scummvm/commit/04a43695e79a2a6385e3460b4a9982482941b0e3
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-11-12T15:38:21+01:00

Commit Message:
GUI: Use filtered search in GroupedList

Changed paths:
    gui/widgets/groupedlist.cpp


diff --git a/gui/widgets/groupedlist.cpp b/gui/widgets/groupedlist.cpp
index a66adb72f2..09eab421f3 100644
--- a/gui/widgets/groupedlist.cpp
+++ b/gui/widgets/groupedlist.cpp
@@ -466,7 +466,7 @@ void GroupedListWidget::setFilter(const Common::U32String &filter, bool redraw)
 			bool matches = true;
 			tok.reset();
 			while (!tok.empty()) {
-				if (!tmp.contains(tok.nextToken())) {
+				if (!_filterMatcher(_filterMatcherArg, n, tmp, tok.nextToken())) {
 					matches = false;
 					break;
 				}




More information about the Scummvm-git-logs mailing list