Skip to content

Commit

Permalink
Merge pull request #54356 from CleverRaven/filter
Browse files Browse the repository at this point in the history
Fix list menu filter not working
  • Loading branch information
ZhilkinSerg authored Jan 13, 2022
2 parents 73825af + f6c254d commit c8a49e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ void uilist::filterlist()
if( nocase ) {
std::wstring wstr = utf8_to_wstr( filter );
transform( wstr.begin(), wstr.end(), wstr.begin(), towlower );
filter = wstr_to_utf8( wstr );
fstr = wstr_to_utf8( wstr );
} else {
fstr = filter;
}
Expand Down

0 comments on commit c8a49e1

Please sign in to comment.