diff options
-rw-r--r-- | src/main/resources/fxml/ArchiveOperation.fxml | 5 | ||||
-rw-r--r-- | src/main/resources/fxml/DetailArchiveOperation.fxml | 9 |
2 files changed, 10 insertions, 4 deletions
diff --git a/src/main/resources/fxml/ArchiveOperation.fxml b/src/main/resources/fxml/ArchiveOperation.fxml index 13dbd12..42f583c 100644 --- a/src/main/resources/fxml/ArchiveOperation.fxml +++ b/src/main/resources/fxml/ArchiveOperation.fxml @@ -69,8 +69,11 @@ </AnchorPane> <ScrollPane fitToWidth="true" prefHeight="410.0" prefWidth="840.0" AnchorPane.leftAnchor="82.0" AnchorPane.topAnchor="225.0"> <content> - <FlowPane fx:id="fpVehicles" prefHeight="410.0" prefWidth="840.0" /> + <FlowPane fx:id="fpVehicles" hgap="12" prefHeight="410.0" prefWidth="840.0" /> </content> + <padding> + <Insets left="40.0" right="40.0" top="20.0" /> + </padding> </ScrollPane> </children> </AnchorPane> diff --git a/src/main/resources/fxml/DetailArchiveOperation.fxml b/src/main/resources/fxml/DetailArchiveOperation.fxml index 29bdeb7..616818e 100644 --- a/src/main/resources/fxml/DetailArchiveOperation.fxml +++ b/src/main/resources/fxml/DetailArchiveOperation.fxml @@ -1,17 +1,20 @@ <?xml version="1.0" encoding="UTF-8"?> +<?import javafx.geometry.Insets?> <?import javafx.scene.layout.AnchorPane?> <?import javafx.scene.layout.HBox?> <?import javafx.scene.layout.VBox?> - -<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" fx:controller="at.ac.tuwien.sepm.assignment.groupphase.einsatzverwaltung.controller.DetailArchiveOperationController" minWidth="-Infinity" xmlns="http://javafx.com/javafx/9.0.1" xmlns:fx="http://javafx.com/fxml/1"> +<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" xmlns="http://javafx.com/javafx/9.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="at.ac.tuwien.sepm.assignment.groupphase.einsatzverwaltung.controller.DetailArchiveOperationController"> <children> - <HBox prefHeight="100.0" prefWidth="200.0"> + <HBox prefHeight="100.0" prefWidth="200.0" spacing="40.0"> <children> <VBox fx:id="vBoxVehicle" prefHeight="200.0" prefWidth="100.0" /> <VBox fx:id="vBoxPeople" prefHeight="200.0" prefWidth="100.0" /> </children> + <padding> + <Insets right="10.0" /> + </padding> </HBox> </children> </AnchorPane> |