diff options
| author | Viktoria Pundy <viktoria.pundy@aon.at> | 2018-06-02 20:32:27 +0200 | 
|---|---|---|
| committer | Tharre <tharre3@gmail.com> | 2018-06-13 18:36:12 +0200 | 
| commit | 5bffab6dad44c3fd48a3af767a3eb9e497597773 (patch) | |
| tree | 83897367537acfaad2502ddab952e503db8889a5 /src/main | |
| parent | 508353d4f9d0d6716cabc70f5e9c6c2712264a9b (diff) | |
| download | sepm-groupproject-5bffab6dad44c3fd48a3af767a3eb9e497597773.tar.gz sepm-groupproject-5bffab6dad44c3fd48a3af767a3eb9e497597773.tar.xz sepm-groupproject-5bffab6dad44c3fd48a3af767a3eb9e497597773.zip  | |
Made some adjustments [#27299]
Diffstat (limited to 'src/main')
| -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>  | 
