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 9b8bd1f commit 9762f33Copy full SHA for 9762f33
i18n/com/romraider/swing/RomFilterPanel.properties
@@ -1,2 +1,2 @@
1
-LBLFILTER = Regex Filter:
+LBLFILTER = Filter:
2
LBLTOOLTIP = Type to filter tables...
src/main/java/com/romraider/maps/Rom.java
@@ -155,7 +155,7 @@ public List<TreePath> refreshDisplayedTables(String filterText) {
155
boolean addToTree = true;
156
if (shouldFilter) {
157
try {
158
- addToTree = table.getName().matches("(?i).*" + filterText + ".*");
+ addToTree = table.getName().toLowerCase().contains(filterText.toLowerCase());
159
} catch (PatternSyntaxException exception) {
160
addToTree = false;
161
}
0 commit comments