From 195d5301f23752800fca40ac95f3fc98a8eefe73 Mon Sep 17 00:00:00 2001 From: rubenpirreram Date: Wed, 27 May 2026 19:29:21 +0200 Subject: [PATCH] Test --- .../ingsw/gc14/View/GUI/MainFXMLController.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/it/polimi/ingsw/gc14/View/GUI/MainFXMLController.java b/src/main/java/it/polimi/ingsw/gc14/View/GUI/MainFXMLController.java index d348098..3e64993 100644 --- a/src/main/java/it/polimi/ingsw/gc14/View/GUI/MainFXMLController.java +++ b/src/main/java/it/polimi/ingsw/gc14/View/GUI/MainFXMLController.java @@ -162,7 +162,7 @@ public class MainFXMLController { // ==== ELEMENTS ==== private StackPane createOrder(String num) { ImageView img = new ImageView(loadImage("/GUIImages/Orders/order-" + num + ".png")); - img.fitHeightProperty().bind(board.sceneProperty().get().heightProperty().subtract(50).divide(4).multiply(0.94)); + img.fitHeightProperty().bind(board.sceneProperty().get().heightProperty().subtract(55).divide(4).multiply(0.94)); img.setPreserveRatio(true); addClip(img); return new StackPane(img); @@ -171,7 +171,7 @@ public class MainFXMLController { private StackPane createSlot(Slot slot, boolean withZoom, boolean withShadow) { ImageView img = new ImageView(loadImage("/GUIImages/Fronts/card-" + slot.getSlotId() + ".png")); img.setPreserveRatio(true); - img.fitHeightProperty().bind(board.sceneProperty().get().heightProperty().subtract(50).divide(4).multiply(0.94)); + img.fitHeightProperty().bind(board.sceneProperty().get().heightProperty().subtract(55).divide(4).multiply(0.94)); addClip(img); StackPane wrapper = new StackPane(img); @@ -193,7 +193,7 @@ public class MainFXMLController { private StackPane createCard(PlayableCard card, boolean withZoom, boolean withShadow, Region parent) { ImageView img = new ImageView(loadImage("/GUIImages/Fronts/card-" + card.getIdIMG() + ".png")); img.setPreserveRatio(true); - img.fitHeightProperty().bind(parent.getScene().heightProperty().subtract(50).divide(4).multiply(0.90)); + img.fitHeightProperty().bind(parent.getScene().heightProperty().subtract(55).divide(4).multiply(0.90)); addClip(img); StackPane wrapper = new StackPane(img); if (withShadow) addShadow(wrapper); @@ -279,7 +279,7 @@ public class MainFXMLController { myHand.getChildren().add(img); } else { Region placeholder = new Region(); - placeholder.prefHeightProperty().bind(myHand.getScene().heightProperty().subtract(50).divide(4).multiply(0.90)); + placeholder.prefHeightProperty().bind(myHand.getScene().heightProperty().subtract(55).divide(4).multiply(0.90)); placeholder.prefWidthProperty().bind(placeholder.prefHeightProperty().multiply(0.675)); placeholder.setStyle("-fx-background-color: transparent;"); myHand.getChildren().add(placeholder); @@ -316,7 +316,7 @@ public class MainFXMLController { usernameLabel.setText(usernameLabel.getText() + " (you)"); if(isError) { - TranslateTransition tt = new TranslateTransition(Duration.millis(50), card); + TranslateTransition tt = new TranslateTransition(Duration.millis(55), card); tt.setFromX(0); tt.setByX(10); tt.setCycleCount(6); @@ -461,7 +461,7 @@ public class MainFXMLController { default -> "/GUIImages/Backs/back-001.png"; }; ImageView back = new ImageView(loadImage(path)); - back.fitHeightProperty().bind(board.sceneProperty().get().heightProperty().divide(4).multiply(0.94)); + back.fitHeightProperty().bind(board.sceneProperty().get().heightProperty().subtract(55).divide(4).multiply(0.94)); back.setPreserveRatio(true); addClip(back); addShadow(back);