mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-19 17:21:52 +00:00
mulptiple xlf export fix (separate output directory for each swf), show definebuttontag(1) actions in tree, image export fix (sometimes throws ArrumentOutOfBounds exception)
This commit is contained in:
@@ -334,7 +334,7 @@ public class AdvancedSettingsDialog extends AppDialog {
|
||||
|
||||
final Map<String, String> locNames = new HashMap<>();
|
||||
for (String name : names) {
|
||||
String locName = "(Internal) " + name;
|
||||
String locName;
|
||||
|
||||
if (resourceBundle.containsKey("config.name." + name)) {
|
||||
locName = resourceBundle.getString("config.name." + name);
|
||||
@@ -344,7 +344,10 @@ public class AdvancedSettingsDialog extends AppDialog {
|
||||
if (cint == null) {
|
||||
throw new RuntimeException("Missing configuration name: " + name);
|
||||
}
|
||||
|
||||
locName = "(Internal) " + name;
|
||||
}
|
||||
|
||||
locNames.put(name, locName);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user