Commit 65bbda5b4f77d8f8c3753528226768edc4d200ce

Authored by Mickael Boiziot
1 parent 8077947b
Exists in master

Change the size of the window and elements in it.

src/main/java/eu/omp/irap/vespa/epntapclient/gui/mainpanel/GUIDim.java
@@ -24,10 +24,10 @@ package eu.omp.irap.vespa.epntapclient.gui.mainpanel; @@ -24,10 +24,10 @@ package eu.omp.irap.vespa.epntapclient.gui.mainpanel;
24 public class GUIDim { 24 public class GUIDim {
25 25
26 /** The height of the bottom panel (result view). */ 26 /** The height of the bottom panel (result view). */
27 - public static final int BOTTOM_PANEL_HEIGHT = 150; 27 + public static final int BOTTOM_PANEL_HEIGHT = 350;
28 28
29 /** The minimum height of the bottom panel (result view). */ 29 /** The minimum height of the bottom panel (result view). */
30 - public static final int BOTTOM_PANEL_MIN_HEIGHT = 100; 30 + public static final int BOTTOM_PANEL_MIN_HEIGHT = 150;
31 31
32 /** The minimum width of the left panel (services view). */ 32 /** The minimum width of the left panel (services view). */
33 public static final int LEFT_PANEL_MIN_WIDTH = 300; 33 public static final int LEFT_PANEL_MIN_WIDTH = 300;
@@ -42,10 +42,10 @@ public class GUIDim { @@ -42,10 +42,10 @@ public class GUIDim {
42 public static final int RIGHT_PANEL_WIDTH = 450; 42 public static final int RIGHT_PANEL_WIDTH = 450;
43 43
44 /** The height of the top panel (request view and services view). */ 44 /** The height of the top panel (request view and services view). */
45 - public static final int TOP_PANEL_HEIGHT = 400; 45 + public static final int TOP_PANEL_HEIGHT = 300;
46 46
47 /** The minimum height of the top panel (request view and services view). */ 47 /** The minimum height of the top panel (request view and services view). */
48 - public static final int TOP_PANEL_MIN_HEIGHT = 100; 48 + public static final int TOP_PANEL_MIN_HEIGHT = 150;
49 49
50 50
51 /** Private constructor to hide the implicit public one. */ 51 /** Private constructor to hide the implicit public one. */