mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-14 16:21:53 +00:00
Disable reload button for new unsaved files
This commit is contained in:
@@ -37,7 +37,18 @@ public class SWFSourceInfo {
|
||||
private final String fileTitle;
|
||||
|
||||
private final boolean detectBundle;
|
||||
|
||||
private boolean empty = false;
|
||||
|
||||
public SWFSourceInfo(String fileTitle) {
|
||||
this(null, null, fileTitle, false);
|
||||
empty = true;
|
||||
}
|
||||
|
||||
public boolean isEmpty() {
|
||||
return empty;
|
||||
}
|
||||
|
||||
public SWFSourceInfo(InputStream inputStream, String file, String fileTitle) {
|
||||
this(inputStream, file, fileTitle, true);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user