mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-25 10:15:46 +00:00
Removed: Option to preview flash items via ActiveX component is no longer available. FFDec now supports its internal flash viewer only.
This commit is contained in:
@@ -43,25 +43,12 @@ public final class MainFrameClassic extends AppFrame implements MainFrame {
|
||||
private final MainFrameMenu mainMenu;
|
||||
|
||||
public MainFrameClassic() {
|
||||
super();
|
||||
super();
|
||||
|
||||
FlashPlayerPanel flashPanel = null;
|
||||
FlashPlayerPanel flashPanel2 = null;
|
||||
|
||||
if (Configuration.useAdobeFlashPlayerForPreviews.get()) {
|
||||
try {
|
||||
flashPanel = new FlashPlayerPanel(this);
|
||||
flashPanel2 = new FlashPlayerPanel(this);
|
||||
} catch (FlashUnsupportedException fue) {
|
||||
//ignored
|
||||
}
|
||||
}
|
||||
|
||||
boolean externalFlashPlayerUnavailable = flashPanel == null;
|
||||
mainMenu = new MainFrameClassicMenu(this, externalFlashPlayerUnavailable);
|
||||
mainMenu = new MainFrameClassicMenu(this);
|
||||
mainMenu.createMenuBar();
|
||||
|
||||
panel = new MainPanel(this, mainMenu, flashPanel, flashPanel2);
|
||||
panel = new MainPanel(this, mainMenu);
|
||||
|
||||
int w = Configuration.guiWindowWidth.get();
|
||||
int h = Configuration.guiWindowHeight.get();
|
||||
|
||||
Reference in New Issue
Block a user