diff options
author | Andreas Weninger <e01526989@student.tuwien.ac.at> | 2018-05-30 10:22:17 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-06-06 19:38:33 +0200 |
commit | 85db4d7807323b284c7af72e2b8dfbdafd1a6b4e (patch) | |
tree | cf2b56bcfd8c11bab7524c51e60d8b8836f7db22 /src | |
parent | 6dbab1351c559661e60dc3d710fee01fb1620437 (diff) | |
download | sepm-groupproject-85db4d7807323b284c7af72e2b8dfbdafd1a6b4e.tar.gz sepm-groupproject-85db4d7807323b284c7af72e2b8dfbdafd1a6b4e.tar.xz sepm-groupproject-85db4d7807323b284c7af72e2b8dfbdafd1a6b4e.zip |
Some changes to VehiclePane.
Diffstat (limited to 'src')
-rw-r--r-- | src/main/resources/fxml/vehiclePane.fxml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/resources/fxml/vehiclePane.fxml b/src/main/resources/fxml/vehiclePane.fxml index 784febc..7932a9f 100644 --- a/src/main/resources/fxml/vehiclePane.fxml +++ b/src/main/resources/fxml/vehiclePane.fxml @@ -41,7 +41,7 @@ <ImageView fx:id="ivNEF" fitHeight="25.0" fitWidth="25.0" pickOnBounds="true" preserveRatio="true" GridPane.columnIndex="0" GridPane.rowIndex="1"> <Image url="@../images/NotNEF.png" /> </ImageView> - <Text fx:id="txtNEF" text="keine NEF-Halterung" GridPane.columnIndex="1" GridPane.rowIndex="1"> + <Text fx:id="txtNEF" text="keine NEF-Halterung" GridPane.columnIndex="1" GridPane.columnSpan="3" GridPane.rowIndex="1"> <font> <Font size="14.0" /> </font> @@ -49,7 +49,7 @@ <ImageView fx:id="ivQualification" fitHeight="25.0" fitWidth="25.0" pickOnBounds="true" preserveRatio="true" GridPane.columnIndex="0" GridPane.rowIndex="2"> <Image url="@../images/Qualification.png" /> </ImageView> - <Text fx:id="txtQualification" text="-" GridPane.columnIndex="1" GridPane.rowIndex="2"> + <Text fx:id="txtQualification" text="-" GridPane.columnIndex="1" GridPane.columnSpan="2" GridPane.rowIndex="2"> <font> <Font size="14.0" /> </font> @@ -62,4 +62,5 @@ <Font size="14.0" /> </font> </Text> + <Text fx:id="txtStatus" text="FREI_STATUS" GridPane.valignment="TOP" GridPane.columnIndex="3" GridPane.rowIndex="0" styleClass="text-medium"/> </GridPane> |