Feat: add black background to intro video player

This commit is contained in:
Julian Kropff
2026-05-14 11:26:11 +02:00
parent f15fed2243
commit 09cc7e39c5
@@ -41,6 +41,9 @@ public class IntroVideoPlayer extends Application {
StackPane root = new StackPane(mediaView);
// black background
root.setStyle("-fx-background-color: black;");
Rectangle2D screenBounds = Screen.getPrimary().getBounds();
Scene scene = new Scene(root, screenBounds.getWidth(), screenBounds.getHeight());