From fc768ab36f191fafe608a35ec7b55ce4677d3bc9 Mon Sep 17 00:00:00 2001 From: ChococookieOS Date: Sun, 15 Sep 2019 15:34:16 +0200 Subject: [PATCH] Added Window Title --- QuickLaunch/bin/.gitignore | 18 ++++++++++++++++++ QuickLaunch/bin/basics/BasicGuiApp$1.class | Bin 988 -> 992 bytes QuickLaunchUpdateServer/bin/.gitignore | 6 ++++++ .../src/stages/AppStage.java | 1 + 4 files changed, 25 insertions(+) create mode 100644 QuickLaunch/bin/.gitignore create mode 100644 QuickLaunchUpdateServer/bin/.gitignore diff --git a/QuickLaunch/bin/.gitignore b/QuickLaunch/bin/.gitignore new file mode 100644 index 0000000..c8ccc4e --- /dev/null +++ b/QuickLaunch/bin/.gitignore @@ -0,0 +1,18 @@ +/HelveticaNeue-UltraLight.otf +/LiberationSerif-Regular.ttf +/back.png +/basics/ +/edit.png +/guis/ +/icon.ico +/icon.png +/lock.png +/main/ +/manager/ +/mod_quicklaunch/ +/plus.png +/save.png +/scenes/ +/trash.png +/unsaved.png +/update/ diff --git a/QuickLaunch/bin/basics/BasicGuiApp$1.class b/QuickLaunch/bin/basics/BasicGuiApp$1.class index 89a05e498c4a36bf029099b25dda302286023f39..c9c55f2df85171123787c9694ee44647de6f74c2 100644 GIT binary patch delta 49 xcmcb^{(ybMCni-31|}e6VBpfy-patEwVi=)Bap|$AP5oz%P=yqP8Mc92>||52qypl delta 45 xcmaFBeusU-CniM`1|}e6VBpfy-patEwVi=)Bap|$AP6Mc7#JBCCW|wl1OVbQ2p9kW diff --git a/QuickLaunchUpdateServer/bin/.gitignore b/QuickLaunchUpdateServer/bin/.gitignore new file mode 100644 index 0000000..1827f2d --- /dev/null +++ b/QuickLaunchUpdateServer/bin/.gitignore @@ -0,0 +1,6 @@ +/run/ +/customNodes/ +/data/ +/network/ +/scenes/ +/stages/ diff --git a/QuickLaunchUpdateServer/src/stages/AppStage.java b/QuickLaunchUpdateServer/src/stages/AppStage.java index b7f8834..aa06ee9 100644 --- a/QuickLaunchUpdateServer/src/stages/AppStage.java +++ b/QuickLaunchUpdateServer/src/stages/AppStage.java @@ -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();