We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb01112 commit 17f2ebfCopy full SHA for 17f2ebf
src/main/java/de/doubleslash/keeptime/view/SettingsController.java
@@ -450,6 +450,8 @@ private void initExportButton() {
450
LOG.info("Export done.");
451
452
Alert informationDialog = new Alert(AlertType.INFORMATION);
453
+ Stage informationStage = (Stage) informationDialog.getDialogPane().getScene().getWindow();
454
+ informationStage.getIcons().add(new Image(Resources.getResource(RESOURCE.ICON_MAIN).toString()));
455
informationDialog.setTitle("Export done");
456
informationDialog.setHeaderText("The current data was exported.");
457
informationDialog.getDialogPane().setContent(new Label("The data was exported to '\n" + fileToSave + "'."));
0 commit comments