Make node search case insensitive

This commit is contained in:
MathemanFlo
2023-03-17 11:25:59 +01:00
parent e062a7a231
commit 3df33de043
+1 -1
View File
@@ -466,7 +466,7 @@ class UINodes {
var first = true;
UIMenu.draw(function(ui: Zui) {
ui.fill(0, 0, ui._w / ui.SCALE(), ui.t.ELEMENT_H * 8, ui.t.SEPARATOR_COL);
var search = ui.textInput(searchHandle, "", Left, true, true);
var search = ui.textInput(searchHandle, "", Left, true, true).toLowerCase();
ui.changed = false;
if (first) {
first = false;