Compare commits

..

No commits in common. "f423824d4b300714b7040026c83fd7e24a2a4dc2" and "34c39349c3103646a5b9482c1bce73f6001d57f6" have entirely different histories.

8 changed files with 7 additions and 12 deletions

View file

@ -73,8 +73,8 @@ public class CheckOutController {
} }
@FXML @FXML
void handleTitleClick(MouseEvent event) throws IOException { void handleTitleClick(MouseEvent event) {
App.setRoot("shop");
} }
@FXML @FXML

View file

@ -112,7 +112,7 @@ public class LoginController {
private Label usernameLabel; private Label usernameLabel;
@FXML @FXML
void handleLoginButton(ActionEvent event) { void handleTitleClick(MouseEvent event) {
} }
@ -121,11 +121,6 @@ public class LoginController {
} }
@FXML
void handleTitleClick(MouseEvent event) throws IOException {
App.setRoot("shop");
}
@FXML @FXML
private void handleCartButton() throws IOException { private void handleCartButton() throws IOException {
App.setRoot("cart"); App.setRoot("cart");

View file

@ -47,8 +47,8 @@ public class RegisterController {
private Label footerCopyText; private Label footerCopyText;
@FXML @FXML
void handleTitleClick(MouseEvent event) throws IOException { void handleTitleClick(MouseEvent event) {
App.setRoot("shop");
} }
@FXML @FXML

View file

@ -38,8 +38,8 @@ public class ShopController {
} }
@FXML @FXML
void handleTitleClick(MouseEvent event) throws IOException { void handleTitleClick(MouseEvent event) {
App.setRoot("shop");
} }
@FXML @FXML