Skip to content

Commit

Permalink
'#39 Case insensitive search from table header search menu text field.
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickdalla committed Apr 19, 2024
1 parent df8043d commit a7f8461
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public void keyReleased(KeyEvent e) {

@Override
public void keyReleased(KeyEvent e) {
String text = txFilter.getText();
String text = txFilter.getText().toLowerCase();
if (text.length() > 0) {
if (fl != null) {
fl.cancel();
Expand Down

0 comments on commit a7f8461

Please sign in to comment.