- The Archenemy view now will resize to 800 x 600 pixels but the random button is drawn offscreen and can not be seen or used.

This commit is contained in:
Chris
2013-02-27 19:49:01 +00:00
parent 0e10eb9296
commit d88a8b3d62

View File

@@ -127,15 +127,15 @@ public enum VSubmenuArchenemy implements IVSubmenu<CSubmenuArchenemy> {
deckChoosers.add(tempChooser);
tempPanel.add(tempChooser, "span 1 2, w 44%!, gap 0 0 20px 20px, growy, pushy, wrap");
tempPanel.add(tempChooser, "span 1 2, w 55%!, gap 10px 10px 0px 10px, growy, pushy, wrap");
if (i == 0) {
tempPanel.add(new FLabel.Builder().text("Select Scheme deck:").build(), "flowy");
tempPanel.add(new FLabel.Builder().text("Select Scheme deck:").build(), "gap 0px 0px 10px 10px, flowy");
archenemySchemes.setSelectionMode(javax.swing.ListSelectionModel.SINGLE_SELECTION);
JScrollPane scrSchemes = new FScrollPane(archenemySchemes, ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
tempPanel.add(scrSchemes, "h 90%!,wrap");
tempPanel.add(scrSchemes, "h 90%, gap 0px 10px 0px 10px, growy, pushy, wrap");
}
playerPanels.add(tempPanel);