Skip to content

Commit

Permalink
Update ChallengeScene.java
Browse files Browse the repository at this point in the history
  • Loading branch information
bobabooth committed May 5, 2022
1 parent 602e921 commit bca7f38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/uk/ac/soton/comp1206/scene/ChallengeScene.java
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public void build() {
/* Left */
VBox leftBar = new VBox(5);
leftBar.setAlignment(Pos.CENTER);
leftBar.setPadding(new Insets(0, 0, 0, 15));
leftBar.setPadding(new Insets(0, 10, 0, 15));
mainPane.setLeft(leftBar);

var skipPieceText = new Text("Skip piece");
Expand All @@ -136,7 +136,7 @@ public void build() {
Text skipPieceText2 = new Text("50 points\n\n");
skipPieceText2.getStyleClass().add("channelItem");

var addLifeText = new Text("Buy one life");
var addLifeText = new Text("Add life");
addLifeText.getStyleClass().add("heading-selectable");
addLifeText.setOnMouseClicked(e -> game.addLives());
var addLifeText2 = new Text("100 points\n\n");
Expand Down

0 comments on commit bca7f38

Please sign in to comment.