Skip to content
This repository has been archived by the owner on Dec 14, 2024. It is now read-only.

Commit

Permalink
small fix to icon finder
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremi360 committed Jul 18, 2023
1 parent 3b79ab2 commit 047d534
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/material-design-icons/icon_finder/icon_finder.gd
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func update_table(filter := ""):

for key in MaterialIconsDB.icons:
if filter:
if not (filter in key):
if not (filter.to_lower() in key):
continue

var link := "[url={link}]{text}[/url]"
Expand Down

0 comments on commit 047d534

Please sign in to comment.