mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-03 22:34:19 +00:00
Searching in browsers cache (Chrome, Firefox)
This commit is contained in:
@@ -99,8 +99,16 @@ public class Main {
|
||||
private static final int UPDATE_SYSTEM_MAJOR = 1;
|
||||
private static final int UPDATE_SYSTEM_MINOR = 0;
|
||||
public static LoadFromMemoryFrame loadFromMemoryFrame;
|
||||
public static LoadFromCacheFrame loadFromCacheFrame;
|
||||
public static boolean readOnly = false;
|
||||
|
||||
public static void loadFromCache() {
|
||||
if (loadFromCacheFrame == null) {
|
||||
loadFromCacheFrame = new LoadFromCacheFrame();
|
||||
}
|
||||
loadFromCacheFrame.setVisible(true);
|
||||
}
|
||||
|
||||
public static void loadFromMemory() {
|
||||
if (loadFromMemoryFrame == null) {
|
||||
loadFromMemoryFrame = new LoadFromMemoryFrame();
|
||||
@@ -341,6 +349,10 @@ public class Main {
|
||||
loadFromMemoryFrame.setVisible(false);
|
||||
loadFromMemoryFrame = null;
|
||||
}
|
||||
if (loadFromCacheFrame != null) {
|
||||
loadFromCacheFrame.setVisible(false);
|
||||
loadFromCacheFrame = null;
|
||||
}
|
||||
reloadSWF();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user