diff options
| author | Tharre <tharre3@gmail.com> | 2018-06-18 21:30:20 +0200 | 
|---|---|---|
| committer | Tharre <tharre3@gmail.com> | 2018-06-18 21:45:37 +0200 | 
| commit | fbc917477d106be774d9c093ac42319aeadf1eff (patch) | |
| tree | b1071538988f7cdc1e1e7a2e246c93e72e4faa35 /src/main/resources/fxml | |
| parent | 41eaffacce8c35e517ec5a1e7a914858a0717a1d (diff) | |
| download | sepm-groupproject-fbc917477d106be774d9c093ac42319aeadf1eff.tar.gz sepm-groupproject-fbc917477d106be774d9c093ac42319aeadf1eff.tar.xz sepm-groupproject-fbc917477d106be774d9c093ac42319aeadf1eff.zip  | |
RequestVehicles GUI list seperation #25953
Diffstat (limited to 'src/main/resources/fxml')
| -rw-r--r-- | src/main/resources/fxml/OperationDetails.fxml | 11 | 
1 files changed, 10 insertions, 1 deletions
diff --git a/src/main/resources/fxml/OperationDetails.fxml b/src/main/resources/fxml/OperationDetails.fxml index e1a4daa..9d2fb5b 100644 --- a/src/main/resources/fxml/OperationDetails.fxml +++ b/src/main/resources/fxml/OperationDetails.fxml @@ -9,6 +9,7 @@  <?import javafx.scene.layout.FlowPane?>  <?import javafx.scene.text.Font?> +<?import javafx.scene.layout.VBox?>  <AnchorPane fx:id="operationDetailsAP" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="542.0" prefWidth="1100.0" visible="false" xmlns="http://javafx.com/javafx/9.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="at.ac.tuwien.sepm.assignment.groupphase.missioncontrol.controller.OperationDetailsController">    <children>      <AnchorPane prefHeight="542.0" prefWidth="1100.0" style="-fx-background-color: rgba(239,235,232,1);" /> @@ -94,7 +95,15 @@          </AnchorPane>              <ScrollPane layoutX="16.0" layoutY="195.0" prefHeight="345.0" prefWidth="846.0">                 <content> -                  <FlowPane fx:id="fpVehicles" hgap="12" prefHeight="336.0" prefWidth="840.0" vgap="12" /> +                 <VBox> +                  <FlowPane fx:id="fpVehicles" hgap="12" prefHeight="168.0" prefWidth="840.0" vgap="12" /> +                   <Label text="Weitere Fahrzeuge:" > +                     <font> +                       <Font name="System Bold" size="19.0" /> +                     </font> +                   </Label> +                  <FlowPane fx:id="fpAdditional" hgap="12" prefHeight="168.0" prefWidth="840.0" vgap="12" /> +                 </VBox>                 </content>              </ScrollPane>        </children>  | 
