mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-08-20 06:06:02 +00:00
18 lines
697 B
XML
18 lines
697 B
XML
<?import org.cryptomator.ui.controls.FontAwesome5IconView?>
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.layout.VBox?>
|
|
<VBox xmlns:fx="http://javafx.com/fxml"
|
|
xmlns="http://javafx.com/javafx"
|
|
fx:controller="org.cryptomator.ui.mainwindow.VaultDetailNeedsMigrationController"
|
|
alignment="TOP_CENTER"
|
|
spacing="9">
|
|
<children>
|
|
<Label text="%main.vaultDetail.migratePrompt" wrapText="true"/>
|
|
<Button styleClass="button-large" text="%main.vaultDetail.migrateButton" minWidth="120" onAction="#showVaultMigrator">
|
|
<graphic>
|
|
<FontAwesome5IconView glyph="FILE_IMPORT" glyphSize="15"/>
|
|
</graphic>
|
|
</Button>
|
|
</children>
|
|
</VBox> |