shape caching fixed

This commit is contained in:
2015-02-01 14:29:28 +01:00
parent 7d4a8dc8cc
commit 0a38121ca3
4 changed files with 69 additions and 23 deletions
@@ -100,6 +100,12 @@ public class Timeline {
return frames;
}
public void addFrame(Frame frame) {
ensureInitialized();
frames.add(frame);
maxDepth = getMaxDepthInternal();
}
public AS2Package getAS2RootPackage() {
ensureInitialized();
return as2RootPackage;