mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-06-20 21:04:28 -04:00
Improve UI
This commit is contained in:
parent
c5028c178c
commit
3c05af90f2
27 changed files with 613 additions and 309 deletions
|
@ -127,7 +127,7 @@ public class BitSquare extends Application {
|
|||
try {
|
||||
final Parent view = loader.load();
|
||||
|
||||
final Scene scene = new Scene(view, 1000, 750);
|
||||
final Scene scene = new Scene(view, 1000, 800);
|
||||
scene.getStylesheets().setAll(getClass().getResource("/io/bitsquare/gui/bitsquare.css").toExternalForm(),
|
||||
getClass().getResource("/io/bitsquare/gui/images.css").toExternalForm());
|
||||
|
||||
|
@ -136,12 +136,12 @@ public class BitSquare extends Application {
|
|||
primaryStage.setScene(scene);
|
||||
|
||||
// TODO resizing not fully supported yet
|
||||
/*
|
||||
primaryStage.setMinWidth(750);
|
||||
primaryStage.setMinHeight(500);*/
|
||||
|
||||
primaryStage.setMinWidth(1000);
|
||||
primaryStage.setMinHeight(750);
|
||||
primaryStage.setMinWidth(75);
|
||||
primaryStage.setMinHeight(50);
|
||||
|
||||
/* primaryStage.setMinWidth(1000);
|
||||
primaryStage.setMinHeight(750);*/
|
||||
|
||||
Profiler.initScene(primaryStage.getScene());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue