diff options
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/fxml/createCar.fxml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/main/resources/fxml/createCar.fxml b/src/main/resources/fxml/createCar.fxml index a3f52f7..5c1bafc 100644 --- a/src/main/resources/fxml/createCar.fxml +++ b/src/main/resources/fxml/createCar.fxml @@ -5,12 +5,17 @@ <?import javafx.scene.control.ChoiceBox?> <?import javafx.scene.control.Hyperlink?> <?import javafx.scene.control.Label?> +<?import javafx.scene.control.ScrollPane?> <?import javafx.scene.layout.AnchorPane?> <?import javafx.scene.layout.FlowPane?> <AnchorPane fx:id="createCarAP" prefHeight="522.0" prefWidth="847.0" style="-fx-background-color: WHITE;" 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.CreateCarController"> <children> - <FlowPane fx:id="fpVehicleList" layoutX="29.0" layoutY="196.0" prefHeight="312.0" prefWidth="789.0" AnchorPane.bottomAnchor="14.0" AnchorPane.leftAnchor="29.0" AnchorPane.rightAnchor="29.0" /> + <ScrollPane layoutX="29.0" layoutY="194.0" prefHeight="314.0" prefWidth="803.0"> + <content> + <FlowPane fx:id="fpVehicleList" prefHeight="312.0" prefWidth="787.0" /> + </content> + </ScrollPane> <AnchorPane prefHeight="87.0" prefWidth="847.0" styleClass="bg-light-orange"> <children> <Label layoutX="45.0" layoutY="26.0" styleClass="text-big" text="Fahrzeuge" textFill="WHITE" /> |