diff options
author | Dominic Rogetzer <e1627756@student.tuwien.ac.at> | 2018-05-18 18:10:28 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-05-22 17:05:32 +0200 |
commit | 6b6c7c354c28a9051a46c0d8dcc9753c995d334c (patch) | |
tree | a8e91859c77a09f5c4164ddd2d9a361cfac2e568 /src/main | |
parent | d6cf253ba3e40f8bc130774384a7c681b0420c6a (diff) | |
download | sepm-groupproject-6b6c7c354c28a9051a46c0d8dcc9753c995d334c.tar.gz sepm-groupproject-6b6c7c354c28a9051a46c0d8dcc9753c995d334c.tar.xz sepm-groupproject-6b6c7c354c28a9051a46c0d8dcc9753c995d334c.zip |
Fix default image paths for employeeListItem [#25949]
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/resources/fxml/employeeListItem.fxml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/resources/fxml/employeeListItem.fxml b/src/main/resources/fxml/employeeListItem.fxml index 267747e..5c73bf5 100644 --- a/src/main/resources/fxml/employeeListItem.fxml +++ b/src/main/resources/fxml/employeeListItem.fxml @@ -30,7 +30,7 @@ layoutY="11.0" pickOnBounds="true" preserveRatio="true" AnchorPane.leftAnchor="10.0" AnchorPane.topAnchor="10.0"> <image> - <Image url="@../images/Qualification.png"/> + <Image url="/images/Qualification.png"/> </image> </ImageView> <Label fx:id="lblQualification" layoutX="45.0" layoutY="14.0" text="Notarzt" @@ -43,7 +43,7 @@ layoutY="11.0" pickOnBounds="true" preserveRatio="true" AnchorPane.leftAnchor="10.0" AnchorPane.topAnchor="10.0"> <image> - <Image url="@../images/Qualification.png"/> + <Image url="/images/Qualification.png"/> </image> </ImageView> <Label fx:id="lblPilot" layoutX="53.0" layoutY="14.0" text="nicht Pilot" @@ -56,7 +56,7 @@ layoutY="11.0" pickOnBounds="true" preserveRatio="true" AnchorPane.leftAnchor="10.0" AnchorPane.topAnchor="10.0"> <image> - <Image url="@../images/Qualification.png"/> + <Image url="/images/Qualification.png"/> </image> </ImageView> <Label fx:id="lblDriver" layoutX="54.0" layoutY="14.0" text="ist Fahrer" |