Tag preview in dump view

This commit is contained in:
Jindra Petřík
2016-01-24 09:12:23 +01:00
parent b9cb48c5e2
commit ea0a2d5569
9 changed files with 242 additions and 108 deletions

View File

@@ -44,8 +44,11 @@ public final class MainFrameClassic extends AppFrame implements MainFrame {
super();
FlashPlayerPanel flashPanel = null;
FlashPlayerPanel flashPanel2 = null;
try {
flashPanel = new FlashPlayerPanel(this);
flashPanel2 = new FlashPlayerPanel(this);
} catch (FlashUnsupportedException fue) {
}
@@ -53,7 +56,7 @@ public final class MainFrameClassic extends AppFrame implements MainFrame {
mainMenu = new MainFrameClassicMenu(this, externalFlashPlayerUnavailable);
mainMenu.createMenuBar();
panel = new MainPanel(this, mainMenu, flashPanel);
panel = new MainPanel(this, mainMenu, flashPanel, flashPanel2);
int w = Configuration.guiWindowWidth.get();
int h = Configuration.guiWindowHeight.get();