aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/gui/GUI.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/jcgp/gui/GUI.java')
-rw-r--r--src/jcgp/gui/GUI.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/jcgp/gui/GUI.java b/src/jcgp/gui/GUI.java
index 91c72e6..8056140 100644
--- a/src/jcgp/gui/GUI.java
+++ b/src/jcgp/gui/GUI.java
@@ -59,7 +59,6 @@ public class GUI extends Application {
private Runnable consoleFlush;
public static void main(String[] args) {
- new GUI();
launch();
}
@@ -117,10 +116,14 @@ public class GUI extends Application {
*
*/
BorderPane leftFrame = new BorderPane();
+ BorderPane experimentLayer = new BorderPane();
populationPane = new PopulationPane(this);
settingsPane = new SettingsPane(this);
+ settingsPane.maxWidthProperty().bind(experimentLayer.widthProperty());
+
+ console.maxHeightProperty().bind(experimentLayer.heightProperty());
HorizontalDragResize.makeDragResizable(settingsPane);
VerticalDragResize.makeDragResizable(console);
@@ -128,8 +131,6 @@ public class GUI extends Application {
leftFrame.setCenter(populationPane);
leftFrame.setBottom(console);
- BorderPane experimentLayer = new BorderPane();
-
experimentLayer.setCenter(leftFrame);
experimentLayer.setRight(settingsPane);