Fixed #178: During watching a game you get Concede and Cancel as menu point with right mouse button

This commit is contained in:
magenoxx 2013-03-29 17:36:03 +04:00
parent 05191e8793
commit fab1417421
2 changed files with 12 additions and 1 deletions

View file

@ -288,6 +288,9 @@ public final class GamePanel extends javax.swing.JPanel {
if (!session.watchGame(gameId)) {
hideGame();
}
for (PlayAreaPanel panel : getPlayers().values()) {
panel.setPlayingMode(false);
}
}
public synchronized void replayGame(UUID gameId) {
@ -306,6 +309,9 @@ public final class GamePanel extends javax.swing.JPanel {
if (!session.startReplay(gameId)) {
hideGame();
}
for (PlayAreaPanel panel : getPlayers().values()) {
panel.setPlayingMode(false);
}
}
public void hideGame() {