mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-04-20 01:26:52 -04:00
Close unlockScene after entering the phrase and unlocking the vault (#1186)
This commit is contained in:
@@ -129,8 +129,11 @@ public class UnlockWorkflow extends Task<Boolean> {
|
||||
window.setScene(successScene.get());
|
||||
window.show();
|
||||
});
|
||||
case REVEAL -> vaultService.reveal(vault);
|
||||
case IGNORE -> {}
|
||||
case REVEAL -> {
|
||||
Platform.runLater(window::close);
|
||||
vaultService.reveal(vault);
|
||||
}
|
||||
case IGNORE -> Platform.runLater(window::close);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user