mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-08-20 06:06:02 +00: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.setScene(successScene.get());
|
||||||
window.show();
|
window.show();
|
||||||
});
|
});
|
||||||
case REVEAL -> vaultService.reveal(vault);
|
case REVEAL -> {
|
||||||
case IGNORE -> {}
|
Platform.runLater(window::close);
|
||||||
|
vaultService.reveal(vault);
|
||||||
|
}
|
||||||
|
case IGNORE -> Platform.runLater(window::close);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user