[cooja/serialsocket] SeriaSocketClient: Fixed position of pack() call

This commit is contained in:
Enrico Joerns 2014-08-29 00:54:09 +02:00
parent db2f4e6818
commit 133311b427
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,6 @@ public class SerialSocketClient extends VisPlugin implements MotePlugin {
GridBagConstraints c = new GridBagConstraints();
JPanel serverSelectPanel = new JPanel(new GridBagLayout());
pack();
serverSelectPanel.setBorder(BorderFactory.createEmptyBorder(2, 2, 2, 2));
JLabel label = new JLabel("Host:");
@ -329,6 +328,7 @@ public class SerialSocketClient extends VisPlugin implements MotePlugin {
}
});
}
pack();
}
private List<ClientListener> listeners = new LinkedList<>();