https://bugs.kde.org/show_bug.cgi?id=432699
Eric Jiang <erji...@alumni.iu.edu> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Latest Commit| |https://invent.kde.org/mult | |imedia/kdenlive/commit/d7a8 | |c463f60e9b5fe757c9af4acf9eb | |be672c530 Status|ASSIGNED |RESOLVED --- Comment #11 from Eric Jiang <erji...@alumni.iu.edu> --- Git commit d7a8c463f60e9b5fe757c9af4acf9ebbe672c530 by Eric Jiang. Committed on 27/07/2022 at 05:29. Pushed by mardelle into branch 'master'. Fix filtering TreeItem lists by non-ASCII strings AssetFilter tries to normalize the TreeItem's text by removing any punctuation and symbols, but it was done using a simple [^a-zA-Z0-9\s] character class which removed any non-ASCII characters, breaking the search for many non-English languages. Replacing this with [^\w\s] didn't work, but iterating through the string and using isLetterOrNumber() does work. M +16 -4 src/assets/assetlist/model/assetfilter.cpp M +8 -0 src/assets/assetlist/model/assetfilter.hpp M +16 -2 tests/treetest.cpp https://invent.kde.org/multimedia/kdenlive/commit/d7a8c463f60e9b5fe757c9af4acf9ebbe672c530 -- You are receiving this mail because: You are watching all bug changes.