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

@@ -51,8 +51,11 @@ public final class MainFrameRibbon extends AppRibbonFrame {
super();
FlashPlayerPanel flashPanel = null;
FlashPlayerPanel flashPanel2 = null;
try {
flashPanel = new FlashPlayerPanel(this);
flashPanel2 = new FlashPlayerPanel(this);
} catch (FlashUnsupportedException fue) {
}
@@ -65,7 +68,7 @@ public final class MainFrameRibbon extends AppRibbonFrame {
mainMenu = new MainFrameRibbonMenu(this, ribbon, externalFlashPlayerUnavailable);
mainMenu.createMenuBar();
panel = new MainPanel(this, mainMenu, flashPanel);
panel = new MainPanel(this, mainMenu, flashPanel, flashPanel2);
panel.setBackground(Color.yellow);
cnt.add(panel, BorderLayout.CENTER);