Skip to content

Commit

Permalink
Readd check for updating to same filter
Browse files Browse the repository at this point in the history
  • Loading branch information
CoreyD97 committed Oct 11, 2019
1 parent bf5fa86 commit ab0b275
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public void setFilter(final String filterString){
SwingUtilities.invokeLater(() -> {
if (filterString == null || filterString.length() == 0 || filterString.matches(" +")) {
setFilter((LogFilter) null);
}else{// if(!filterString.equals(currentFilterString)){
}else if(!filterString.equals(currentFilterString)){
currentFilterString = filterString;
try {
LogFilter filter = new LogFilter(filterString);
Expand Down

0 comments on commit ab0b275

Please sign in to comment.