diff options
author | Dominic Rogetzer <e1627756@student.tuwien.ac.at> | 2018-05-18 17:32:42 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-05-22 17:05:32 +0200 |
commit | 1b77709c30626db808530b04da0584137515de01 (patch) | |
tree | da084990e67e9aab6d1cd079bcf2c092e9891915 /src | |
parent | 7a5c35dc44dfd28bcb93fa5f47ff1a3b0b8bbb7c (diff) | |
download | sepm-groupproject-1b77709c30626db808530b04da0584137515de01.tar.gz sepm-groupproject-1b77709c30626db808530b04da0584137515de01.tar.xz sepm-groupproject-1b77709c30626db808530b04da0584137515de01.zip |
Adjust width of filterEmployeesControl [#25949]
Diffstat (limited to 'src')
-rw-r--r-- | src/main/resources/fxml/filterEmployeesControl.fxml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/resources/fxml/filterEmployeesControl.fxml b/src/main/resources/fxml/filterEmployeesControl.fxml index 7934d5a..68a6f3e 100644 --- a/src/main/resources/fxml/filterEmployeesControl.fxml +++ b/src/main/resources/fxml/filterEmployeesControl.fxml @@ -5,7 +5,7 @@ <?import javafx.scene.control.TextField?> <?import javafx.scene.layout.AnchorPane?> -<AnchorPane prefHeight="86.0" prefWidth="827.0" style="-fx-background-color: white;" +<AnchorPane prefHeight="86.0" prefWidth="740.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.FilterEmployeesController"> <children> @@ -13,6 +13,7 @@ <TextField fx:id="inputFilterString" layoutX="22.0" layoutY="41.0" onKeyReleased="#onFilterTextChanged" promptText="Name eingeben"/> <Button layoutX="698.0" layoutY="48.0" mnemonicParsing="false" onAction="#onAddEmployeeClicked" - onInputMethodTextChanged="#onFilterTextChanged" text="Person hinzufügen"/> + onInputMethodTextChanged="#onFilterTextChanged" text="Person hinzufügen" + AnchorPane.rightAnchor="10.0"/> </children> </AnchorPane> |