Show side panel only ingame

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@487 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Jannis Harder 2011-06-19 18:53:02 +02:00
parent 705698670a
commit dcf87994cb
7 changed files with 49 additions and 3 deletions

View file

@ -123,6 +123,7 @@ public class ApplicationControl {
* Starts the application by showing the game settings dialog panel
*/
public void startApplication() {
view.showSidePanel(false);
view.showScorePanel(false);
view.setBottomPanel(BottomPanelType.START_GAME_PANEL);
saveControl.setGameSettings(null);

View file

@ -98,6 +98,7 @@ public class GameControl {
*/
public void startGame() {
view.getSidePanel().setGameSettings(gameSettings);
view.showSidePanel(true);
startRound();
}