mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-13 09:28:57 +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++) {
|
||||
|
||||
@@ -142,7 +142,7 @@ public class ExportDialog extends AppDialog {
|
||||
}
|
||||
cfg += key;
|
||||
}
|
||||
Configuration.lastSelectedExportZoom.set(Double.parseDouble(zoomTextField.getText()));
|
||||
Configuration.lastSelectedExportZoom.set(Double.parseDouble(zoomTextField.getText())/100);
|
||||
Configuration.lastSelectedExportFormats.set(cfg);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user