Issue #1118 running file with importassets

Correct checking the autloLoadSwfs checkbox in settings
This commit is contained in:
Jindra Petřík
2016-01-04 21:59:55 +01:00
parent e333b92ffb
commit 0f835dd0f5
6 changed files with 87 additions and 36 deletions

View File

@@ -3228,6 +3228,8 @@ public final class SWF implements SWFContainerItem, Timelined {
public void addTag(Tag tag) {
setModified(true);
tags.add(tag);
readOnlyTags = null;
readOnlyLocalTags = null;
}
/**
@@ -3240,6 +3242,8 @@ public final class SWF implements SWFContainerItem, Timelined {
public void addTag(int index, Tag tag) {
setModified(true);
tags.add(index, tag);
readOnlyTags = null;
readOnlyLocalTags = null;
}
/**