mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-01 10:55:12 +00:00
ignore case is selected by default in search window, addes some hotkeys
This commit is contained in:
@@ -563,7 +563,7 @@ public final class MainPanel extends JPanel implements ActionListener, TreeSelec
|
||||
//Opening files with drag&drop to main window
|
||||
enableDrop(true);
|
||||
}
|
||||
|
||||
|
||||
public void load(SWFList newSwfs, boolean first) {
|
||||
|
||||
previewPanel.clear();
|
||||
@@ -1101,10 +1101,17 @@ public final class MainPanel extends JPanel implements ActionListener, TreeSelec
|
||||
}
|
||||
}
|
||||
|
||||
public void searchAs() {
|
||||
public void searchInActionScriptOrText(boolean searhInText) {
|
||||
if (searchDialog == null) {
|
||||
searchDialog = new SearchDialog(getMainFrame().getWindow());
|
||||
}
|
||||
|
||||
if (searhInText) {
|
||||
searchDialog.searchInTextsRadioButton.setSelected(true);
|
||||
} else {
|
||||
searchDialog.searchInASRadioButton.setSelected(true);
|
||||
}
|
||||
|
||||
searchDialog.setVisible(true);
|
||||
if (searchDialog.result) {
|
||||
final String txt = searchDialog.searchField.getText();
|
||||
|
||||
Reference in New Issue
Block a user