diff --git a/source/net/filebot/ui/GettingStartedStage.java b/source/net/filebot/ui/GettingStartedStage.java index 2cb4f5d8..41f92efa 100644 --- a/source/net/filebot/ui/GettingStartedStage.java +++ b/source/net/filebot/ui/GettingStartedStage.java @@ -45,6 +45,11 @@ public class GettingStartedStage { alert.setHeaderText("Hello! Do you need help Getting Started?"); alert.setContentText("If you have never used FileBot before, please have a look at the video tutorials first."); + if (isWindowsApp()) { + Stage stage = (Stage) alert.getDialogPane().getScene().getWindow(); + stage.getIcons().setAll(ResourceManager.getApplicationIconResources().map(URL::toString).map(Image::new).toArray(Image[]::new)); + } + Optional result = alert.showAndWait(); if (result.get() == ButtonType.OK) { openURI(getEmbeddedHelpURL());