Use Label instead of Text

This commit is contained in:
Armin Schrenk
2023-02-15 23:44:51 +01:00
parent c5b21b0d8c
commit 03f6e0a33c

View File

@@ -12,7 +12,6 @@
<?import javafx.scene.control.ToggleGroup?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.text.Text?>
<?import javafx.scene.text.TextFlow?>
<VBox xmlns:fx="http://javafx.com/fxml"
xmlns="http://javafx.com/javafx"
@@ -26,8 +25,8 @@
</padding>
<children>
<TextFlow>
<Text text="%vaultOptions.mount.info" styleClass="label"/>
<Text text=" "/>
<Label text="%vaultOptions.mount.info"/>
<Label text=" "/>
<Hyperlink styleClass="hyperlink-underline" text="%vaultOptions.mount.linkToPreferences" onAction="#openVolumePreferences" wrapText="true"/>
</TextFlow>
<CheckBox fx:id="readOnlyCheckbox" text="%vaultOptions.mount.readonly" visible="${controller.readOnlySupported}" managed="${controller.readOnlySupported}"/>