mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 04:50:46 +00:00
Added Opening ABC file format (*.abc)
This commit is contained in:
@@ -78,7 +78,7 @@ public class SearchDialog extends AppDialog {
|
||||
}
|
||||
}
|
||||
|
||||
public SearchDialog(Window owner, boolean replace, String selection, boolean selectionFirst) {
|
||||
public SearchDialog(Window owner, boolean replace, String selection, boolean selectionFirst, boolean currentAbc) {
|
||||
super(owner);
|
||||
setDefaultCloseOperation(JDialog.HIDE_ON_CLOSE);
|
||||
ignoreCaseCheckBox.setSelected(true);
|
||||
@@ -111,7 +111,7 @@ public class SearchDialog extends AppDialog {
|
||||
if (selection != null) {
|
||||
scopeItems.add(translate("scope.selection").replace("%selection%", selection));
|
||||
}
|
||||
scopeItems.add(translate("scope.currentFile"));
|
||||
scopeItems.add(translate(currentAbc ? "scope.currentFile.abc" : "scope.currentFile"));
|
||||
scopeItems.add(translate("scope.allFiles"));
|
||||
panField.add(new JLabel(translate("label.scope")));
|
||||
scopeComboBox = new JComboBox<>(scopeItems.toArray(new String[scopeItems.size()]));
|
||||
|
||||
Reference in New Issue
Block a user