added stage title for display in window managers

This commit is contained in:
Sebastian Stenzel
2019-09-19 11:00:03 +02:00
parent ad29c009b2
commit 24f13e2afe

View File

@@ -48,6 +48,7 @@ abstract class MainWindowModule {
stage.setMinHeight(440);
stage.setMaxWidth(1000);
stage.setMaxHeight(700);
stage.setTitle("Cryptomator");
stage.initStyle(StageStyle.UNDECORATED);
windowIcon.ifPresent(stage.getIcons()::add);
return stage;