Center
This commit is contained in:
parent
919746e58e
commit
2c819557ff
2 changed files with 5 additions and 1 deletions
|
@ -103,7 +103,7 @@ public class MainWindowController implements IObserver {
|
|||
this.score.setFont(new Font(40));
|
||||
|
||||
if(this.adapter.isLoosed()){
|
||||
this.score.setText("Score : " + this.model.getScore() + " ----- YOU LOOSE !!");
|
||||
this.score.setText("Score : " + this.model.getScore() + "\n You loose !!!");
|
||||
}
|
||||
else{
|
||||
this.score.setText("Score : " + this.model.getScore());
|
||||
|
|
|
@ -11,7 +11,11 @@
|
|||
xmlns:fx="http://javafx.com/fxml" prefWidth="800" prefHeight="800" >
|
||||
|
||||
<top>
|
||||
<GridPane alignment="CENTER">
|
||||
<padding><Insets top="50" right="25" bottom="25" left="25"/></padding>
|
||||
|
||||
<Text fx:id="score"/>
|
||||
</GridPane>
|
||||
</top>
|
||||
<center>
|
||||
<Canvas fx:id="boardCanvas" height="500" width="500" />
|
||||
|
|
Loading…
Add table
Reference in a new issue