Skip to content

Commit

Permalink
Make search queries case-insensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
Meorawr committed Oct 17, 2023
1 parent ebae54b commit 3f752e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion totalRP3/UI/Browsers/IconBrowser.lua
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function IconSearchController:OnLoad()
end

function IconSearchController:BeginSearch(query)
query = string.trim(query);
query = string.utf8lower(string.trim(query));

if self.query == query then
return;
Expand Down

0 comments on commit 3f752e0

Please sign in to comment.