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:
honfika@gmail.com
2016-03-06 15:35:46 +01:00
parent 4d6aed7e3d
commit fa9623bf9f
7 changed files with 218 additions and 127 deletions

View File

@@ -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);
}