Skip to content

Commit

Permalink
修复在查找框里按esc导致空指针异常
Browse files Browse the repository at this point in the history
  • Loading branch information
yushijinhun committed Jan 29, 2017
1 parent 0f05017 commit a0ef070
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public OriginalTextsWindow() {
};
hideFilter = () -> {
if (!txtFilter.getText().isEmpty())
txtFilter.setText(null);
txtFilter.setText("");
rootPane.setTop(null);
};

Expand Down

0 comments on commit a0ef070

Please sign in to comment.