|
@@ -2,7 +2,9 @@ package org.cryptomator.ui.mainwindow;
|
|
|
|
|
|
import javafx.beans.property.ObjectProperty;
|
|
|
import javafx.beans.property.ReadOnlyObjectProperty;
|
|
|
+import javafx.fxml.FXML;
|
|
|
import org.cryptomator.common.vaults.Vault;
|
|
|
+import org.cryptomator.common.vaults.VaultListManager;
|
|
|
import org.cryptomator.ui.common.FxController;
|
|
|
|
|
|
import javax.inject.Inject;
|
|
@@ -17,4 +19,8 @@ public class VaultDetailMissingVaultController implements FxController {
|
|
|
this.vault = vault;
|
|
|
}
|
|
|
|
|
|
+ @FXML
|
|
|
+ public void recheck() {
|
|
|
+ VaultListManager.redetermineVaultState(vault.get());
|
|
|
+ }
|
|
|
}
|