[BUGFIX] Adjusted size and location of ServerSelector

This commit is contained in:
Emmastone
2016-04-28 02:09:19 +01:00
parent bfd0c0f34e
commit b4e1089799
35 changed files with 2 additions and 3 deletions
+2 -3
View File
@@ -42,7 +42,7 @@ public class ServerSelector extends JPanel {
setLayout(new BorderLayout());
setPreferredSize(new Dimension(600, 400));
setPreferredSize(new Dimension(600, 350));
JPanel interior = new JPanel(null);
@@ -66,8 +66,7 @@ public class ServerSelector extends JPanel {
.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
scrlInterior
.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
add(scrlInterior, BorderLayout.CENTER);
add(scrlInterior);
}