Added #2113 Commandline - allow -onerror abort argument on -importScript

This commit is contained in:
Jindra Petřík
2023-11-05 20:00:02 +01:00
parent aecd10f630
commit cc0050f155
7 changed files with 79 additions and 18 deletions

View File

@@ -3774,6 +3774,11 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
public void scriptImported() {
countAs2++;
}
@Override
public void scriptImportError() {
}
});
List<ScriptPack> packs;
@@ -3791,6 +3796,10 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
public void scriptImported() {
countAs3++;
}
@Override
public void scriptImportError() {
}
}
);