mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-27 05:44:51 +00:00
frames to html canvas fix
export zoom config save fix
This commit is contained in:
@@ -2280,7 +2280,7 @@ public final class SWF implements TreeItem, Timelined {
|
||||
sb.append("\tswitch(frame){\r\n");
|
||||
int maxDepth = timeline.getMaxDepth();
|
||||
Stack<Integer> clipDepths = new Stack<>();
|
||||
for (int frame = 0; frame < frames.size(); frame++) {
|
||||
for (int frame:frames) {
|
||||
sb.append("\t\tcase ").append(frame).append(":\r\n");
|
||||
Frame frameObj = timeline.frames.get(frame);
|
||||
for (int i = 1; i <= maxDepth + 1; i++) {
|
||||
|
||||
Reference in New Issue
Block a user