|
@@ -5,6 +5,7 @@ import javafx.application.Platform;
|
|
|
import javafx.concurrent.Task;
|
|
|
import javafx.scene.Scene;
|
|
|
import javafx.stage.Stage;
|
|
|
+import javafx.stage.Window;
|
|
|
import org.cryptomator.common.vaults.Vault;
|
|
|
import org.cryptomator.common.vaults.VaultState;
|
|
|
import org.cryptomator.common.vaults.Volume;
|
|
@@ -112,6 +113,11 @@ public class UnlockWorkflow extends Task<Boolean> {
|
|
|
Platform.runLater(() -> {
|
|
|
window.setScene(unlockScene.get());
|
|
|
window.show();
|
|
|
+ Window owner = window.getOwner();
|
|
|
+ if (owner != null) {
|
|
|
+ window.setX(owner.getX() + (owner.getWidth() - window.getWidth()) / 2);
|
|
|
+ window.setY(owner.getY() + (owner.getHeight() - window.getHeight()) / 2);
|
|
|
+ } else window.centerOnScreen();
|
|
|
if (animateShake) {
|
|
|
Animations.createShakeWindowAnimation(window).play();
|
|
|
}
|