mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 10:50:47 +00:00
Issue #458 Saving font settings to preserve font panel selection after program restart: individual behavior for each file
This commit is contained in:
@@ -430,6 +430,13 @@ public final class SWF {
|
||||
return file;
|
||||
}
|
||||
|
||||
public String getShortFileName() {
|
||||
if (file == null) {
|
||||
return "";
|
||||
}
|
||||
return new File(file).getName();
|
||||
}
|
||||
|
||||
private void findFileAttributes() {
|
||||
for (Tag t : tags) {
|
||||
if (t instanceof FileAttributesTag) {
|
||||
@@ -713,7 +720,7 @@ public final class SWF {
|
||||
outdir += File.separator;
|
||||
}
|
||||
outdir += "scripts" + File.separator;
|
||||
ret.addAll(TagNode.exportNodeAS(tags, handler, list, outdir, exportMode, evl));
|
||||
ret.addAll(TagNode.exportNodeAS(handler, list, outdir, exportMode, evl));
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user