diff options
author | Andreas Weninger <e01526989@student.tuwien.ac.at> | 2018-06-15 12:32:45 +0200 |
---|---|---|
committer | Andreas Weninger <e01526989@student.tuwien.ac.at> | 2018-06-15 12:32:45 +0200 |
commit | c804334ae46cd5e3d49d4a4f71c04d03180691cb (patch) | |
tree | 6c515f3108e30ac2d4c4dab71671c8fd3e5b22a8 /src/main/resources | |
parent | 1c4959e4be30cddf9f4c565c718aa3e2feedfd0e (diff) | |
download | sepm-groupproject-c804334ae46cd5e3d49d4a4f71c04d03180691cb.tar.gz sepm-groupproject-c804334ae46cd5e3d49d4a4f71c04d03180691cb.tar.xz sepm-groupproject-c804334ae46cd5e3d49d4a4f71c04d03180691cb.zip |
Hotfix: RegistrationWindow was overflowing to the right when the employeeList became to short.
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/fxml/RegistrationWindow.fxml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/resources/fxml/RegistrationWindow.fxml b/src/main/resources/fxml/RegistrationWindow.fxml index 1524462..a1638f4 100644 --- a/src/main/resources/fxml/RegistrationWindow.fxml +++ b/src/main/resources/fxml/RegistrationWindow.fxml @@ -76,7 +76,7 @@ </padding> </VBox> </ScrollPane> - <ScrollPane fx:id="listEmployee" hbarPolicy="NEVER" GridPane.rowIndex="5" GridPane.columnIndex="2"> + <ScrollPane fx:id="listEmployee" hbarPolicy="NEVER" vbarPolicy="ALWAYS" GridPane.rowIndex="5" GridPane.columnIndex="2"> <GridPane.margin> <Insets left="-7" right="-20" bottom="-12"/> </GridPane.margin> |