| 83 84 85 86 87 88 89 | bottomPanel.add(Box.createRigidArea(new Dimension(10,0))); bottomPanel.add(storyArea); bottomPanel.add(Box.createRigidArea(new Dimension(20,0))); bottomPanel.add(sexPanel); bottomPanel.add(Box.createRigidArea(new Dimension(20,0))); bottomPanel.add(cbPanel); bottomPanel.add(Box.createRigidArea(new Dimension(10,0))); |
| 83 84 85 86 87 88 89 90 91 92 93 | bottomPanel.add(Box.createRigidArea(new Dimension(10,0))); bottomPanel.add(storyArea); bottomPanel.add(Box.createRigidArea(new Dimension(10,0))); bottomPanel.add(new JSeparator(SwingConstants.VERTICAL)); bottomPanel.add(Box.createRigidArea(new Dimension(10,0))); bottomPanel.add(sexPanel); bottomPanel.add(Box.createRigidArea(new Dimension(10,0))); bottomPanel.add(new JSeparator(SwingConstants.VERTICAL)); bottomPanel.add(Box.createRigidArea(new Dimension(10,0))); bottomPanel.add(cbPanel); bottomPanel.add(Box.createRigidArea(new Dimension(10,0))); |