diff options
| author | Viktoria Pundy <viktoria.pundy@aon.at> | 2018-05-18 09:56:02 +0200 | 
|---|---|---|
| committer | Tharre <tharre3@gmail.com> | 2018-05-22 15:54:22 +0200 | 
| commit | ffa77840d38c39cbffeaeed6c0db83598b203795 (patch) | |
| tree | 240567162aa7352606024122e186cb4a8e2436f3 /src/main/resources/fxml | |
| parent | 8bcf2b15f3d06d4a82920ab67e2986aa42f18a69 (diff) | |
| download | sepm-groupproject-ffa77840d38c39cbffeaeed6c0db83598b203795.tar.gz sepm-groupproject-ffa77840d38c39cbffeaeed6c0db83598b203795.tar.xz sepm-groupproject-ffa77840d38c39cbffeaeed6c0db83598b203795.zip  | |
Added Scrollpane for vehicles in detail view [#24990]
Diffstat (limited to 'src/main/resources/fxml')
| -rw-r--r-- | src/main/resources/fxml/ArchiveOperation.fxml | 7 | 
1 files changed, 6 insertions, 1 deletions
diff --git a/src/main/resources/fxml/ArchiveOperation.fxml b/src/main/resources/fxml/ArchiveOperation.fxml index 753976b..b680c0f 100644 --- a/src/main/resources/fxml/ArchiveOperation.fxml +++ b/src/main/resources/fxml/ArchiveOperation.fxml @@ -2,6 +2,7 @@  <?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?>  <?import javafx.scene.text.Font?> @@ -54,7 +55,11 @@                    </Label>                 </children>              </AnchorPane> -            <FlowPane fx:id="fpVehicles" layoutX="82.0" layoutY="225.0" prefHeight="410.0" prefWidth="640.0" /> +            <ScrollPane fitToWidth="true" prefHeight="410.0" prefWidth="640.0" AnchorPane.leftAnchor="82.0" AnchorPane.topAnchor="225.0"> +               <content> +                  <FlowPane fx:id="fpVehicles" prefHeight="410.0" prefWidth="640.0" /> +               </content> +            </ScrollPane>           </children>        </AnchorPane>    </children>  | 
