Skip to content

Commit

Permalink
use just the single control panel
Browse files Browse the repository at this point in the history
  • Loading branch information
madhephaestus committed Apr 13, 2024
1 parent 6783de9 commit a489547
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,9 @@ public void run() {
} else {
BowlerStudio.runLater(() -> {
box.getChildren().clear();
if (hasWalking(device)) {
tab.setOverlayTopRight(walkWidget);
}
});
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@ public AnchorPane getWalkingBox() {
return walkingBox;
}

public void setWalkingBox(AnchorPane walkingBox) {
this.walkingBox = walkingBox;
}
// public void setWalkingBox(AnchorPane walkingBox) {
// this.walkingBox = walkingBox;
// }

public AnchorPane getControlsBox() {
return controlsBox;
return walkingBox;
}

public void setControlsBox(AnchorPane controlsBox) {
this.controlsBox = controlsBox;
}
// public void setControlsBox(AnchorPane controlsBox) {
// this.controlsBox = controlsBox;
// }

// public AnchorPane getProgressBar() {
// return progressBar;
Expand Down

0 comments on commit a489547

Please sign in to comment.