focus on password input in password dialog window

This commit is contained in:
woodser 2024-10-23 12:03:45 -04:00
parent b0fc864313
commit a00930aa9e

View file

@ -38,6 +38,7 @@ import javafx.scene.image.ImageView;
import javafx.scene.layout.VBox;
import javafx.scene.paint.Color;
import javafx.stage.Stage;
import javafx.stage.Window;
import lombok.extern.slf4j.Slf4j;
import java.util.Optional;
@ -228,6 +229,17 @@ public class HavenoAppMain extends HavenoExecutable {
return null;
}
});
// Focus the password field when dialog is shown
Window window = getDialogPane().getScene().getWindow();
if (window instanceof Stage) {
Stage dialogStage = (Stage) window;
dialogStage.focusedProperty().addListener((observable, oldValue, newValue) -> {
if (newValue) {
passwordField.requestFocus();
}
});
}
}
}
}