Added Window Title

This commit is contained in:
2019-09-15 15:34:16 +02:00
parent ffdd3e6dee
commit fc768ab36f
4 changed files with 25 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ public class AppStage extends Application{
Thread st = new Thread(new ServerThread(ls));
st.start();
primaryStage.setScene(new Scene(ls));
primaryStage.setTitle("QuickLaunch Update Server");
primaryStage.setResizable(false);
primaryStage.show();