Re: New quest features/changes
Alright, at least that's some improvement...
What you could do, is play around with some of the BorderLayout settings. In GuiDisplay3:
Maybe BorderLayout.AFTER_LINE_ENDS, or BorderLayout.LINE_END?
Also, try reversing the iconlabel position with the lifelabel:
What you could do, is play around with some of the BorderLayout settings. In GuiDisplay3:
- Code: Select all
...
JPanel oppPanel = new JPanel();
oppPanel.setBackground(c1);
oppPanel.setBorder(new TitledBorder(new EtchedBorder(), ForgeProps.getLocalized(COMPUTER_TITLE)));
oppPanel.setLayout(new BorderLayout());
oppPanel.add(oppNumbersPanel, BorderLayout.WEST);
oppPanel.add(oppIconLabel, BorderLayout.CENTER);
oppPanel.add(oppLifeLabel, BorderLayout.EAST); <----------- try things on this line
oppPanel.add(oppPCLabel, BorderLayout.AFTER_LAST_LINE);
pane.add(new ExternalPanel(oppPanel), "compy");
...
Maybe BorderLayout.AFTER_LINE_ENDS, or BorderLayout.LINE_END?
Also, try reversing the iconlabel position with the lifelabel:
- Code: Select all
oppPanel.add(oppIconLabel, BorderLayout.EAST);
oppPanel.add(oppLifeLabel, BorderLayout.CENTER);
