Compare commits

...

2 commits

Author SHA1 Message Date
f423824d4b Merge branch 'main' of interstellardevelopment.org:sageTheDm/IMS-java 2025-01-13 20:11:21 +01:00
1662d09ef6 spaghetti 2025-01-13 20:11:17 +01:00
8 changed files with 12 additions and 7 deletions

View file

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

View file

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

View file

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

View file

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