We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b42a0e commit d8f6a57Copy full SHA for d8f6a57
[editor]/editor_gui/client/load.lua
@@ -76,7 +76,7 @@ function openSearch()
76
end
77
else
78
for i,res in ipairs(openResources) do
79
- if utf8.find(string.lower(res["friendlyName"]), string.lower(text), 1, true) then
+ if utf8.find(utf8.lower(res["friendlyName"]), utf8.lower(text), 1, true) then
80
local row = guiGridListAddRow ( loadDialog.mapsList )
81
guiGridListSetItemText ( loadDialog.mapsList, row, 1, res["friendlyName"], false, false )
82
guiGridListSetItemText ( loadDialog.mapsList, row, 2, res["gamemodes"], false, false )
0 commit comments