Improved visual appearance of ChatScene

Additionally added minimum height of application and basic
ContactSearchScene.fxml file.
This commit is contained in:
delvh
2020-06-06 18:33:24 +02:00
parent ec72b6fc67
commit 9e7bde1d4d
4 changed files with 34 additions and 16 deletions

View File

@ -124,6 +124,8 @@ public final class Startup extends Application {
sceneContext.load(SceneContext.SceneInfo.CHAT_SCENE);
sceneContext.<ChatSceneController>getController().initializeData(sceneContext, localDB, client, writeProxy);
stage.setTitle("Envoy");
stage.setMinHeight(400);
stage.setMinWidth(350);
stage.getIcons().add(IconUtil.load("/icons/envoy_logo.png"));
stage.show();
@ -151,7 +153,7 @@ public final class Startup extends Application {
/**
* Starts the application.
*
*
* @param args the command line arguments are processed by the
* {@link ClientConfig}
* @since Envoy Client v0.1-beta