mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 03:30:44 +00:00
#689 Ignore Case not correctly toggled: fixed
This commit is contained in:
+2
-3
@@ -245,14 +245,13 @@ public class DocumentSearchData {
|
||||
java.util.ResourceBundle.getBundle("jsyntaxpane/Bundle").getString("DocumentSearchData.Find"), JOptionPane.INFORMATION_MESSAGE);
|
||||
}
|
||||
|
||||
public void showQuickFindDialogEx(JTextComponent target,boolean ignoreCase,boolean regularExpresion) {
|
||||
public void showQuickFindDialogEx(JTextComponent target, boolean ignoreCase, boolean regularExpresion) {
|
||||
if (quickFindDlg == null) {
|
||||
quickFindDlg = new QuickFindDialog(target, this);
|
||||
}
|
||||
quickFindDlg.showFor(target);
|
||||
quickFindDlg.setIgnoreCase(ignoreCase);
|
||||
quickFindDlg.setRegularExpression(regularExpresion);
|
||||
|
||||
quickFindDlg.showFor(target);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user