Correctly handle disappearing players during games
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@577 72836036-5685-4462-b002-a69064685172
This commit is contained in:
parent
ba421e2c8b
commit
77e119e77d
4 changed files with 140 additions and 74 deletions
|
@ -58,6 +58,10 @@ class WinPanel extends JPanel {
|
|||
connectionLostLabel.setVerticalAlignment(JLabel.CENTER);
|
||||
add(connectionLostLabel);
|
||||
|
||||
createButtons();
|
||||
}
|
||||
|
||||
private void createButtons() {
|
||||
newRoundButton = new JButton("Neue Runde");
|
||||
newRoundButton.addActionListener(new ActionListener() {
|
||||
@Override
|
||||
|
|
Reference in a new issue