From 65bbda5b4f77d8f8c3753528226768edc4d200ce Mon Sep 17 00:00:00 2001 From: Mickaƫl Boiziot Date: Tue, 7 Jun 2016 09:15:11 +0200 Subject: [PATCH] Change the size of the window and elements in it. --- src/main/java/eu/omp/irap/vespa/epntapclient/gui/mainpanel/GUIDim.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/eu/omp/irap/vespa/epntapclient/gui/mainpanel/GUIDim.java b/src/main/java/eu/omp/irap/vespa/epntapclient/gui/mainpanel/GUIDim.java index 5e74d00..ea193e7 100644 --- a/src/main/java/eu/omp/irap/vespa/epntapclient/gui/mainpanel/GUIDim.java +++ b/src/main/java/eu/omp/irap/vespa/epntapclient/gui/mainpanel/GUIDim.java @@ -24,10 +24,10 @@ package eu.omp.irap.vespa.epntapclient.gui.mainpanel; public class GUIDim { /** The height of the bottom panel (result view). */ - public static final int BOTTOM_PANEL_HEIGHT = 150; + public static final int BOTTOM_PANEL_HEIGHT = 350; /** The minimum height of the bottom panel (result view). */ - public static final int BOTTOM_PANEL_MIN_HEIGHT = 100; + public static final int BOTTOM_PANEL_MIN_HEIGHT = 150; /** The minimum width of the left panel (services view). */ public static final int LEFT_PANEL_MIN_WIDTH = 300; @@ -42,10 +42,10 @@ public class GUIDim { public static final int RIGHT_PANEL_WIDTH = 450; /** The height of the top panel (request view and services view). */ - public static final int TOP_PANEL_HEIGHT = 400; + public static final int TOP_PANEL_HEIGHT = 300; /** The minimum height of the top panel (request view and services view). */ - public static final int TOP_PANEL_MIN_HEIGHT = 100; + public static final int TOP_PANEL_MIN_HEIGHT = 150; /** Private constructor to hide the implicit public one. */ -- libgit2 0.21.2