Commit 7486e4f5e634193befca006704bfba1827f311b7
1 parent
808353e9
Exists in
master
Increase size of panels and window.
Showing
2 changed files
with
4 additions
and
4 deletions
Show diff stats
src/main/java/eu/omp/irap/vespa/epntapclient/EpnTapMainApp.java
@@ -66,7 +66,7 @@ public class EpnTapMainApp { | @@ -66,7 +66,7 @@ public class EpnTapMainApp { | ||
66 | frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); | 66 | frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); |
67 | frame.setContentPane(guiCtrl.getView()); | 67 | frame.setContentPane(guiCtrl.getView()); |
68 | frame.setVisible(true); | 68 | frame.setVisible(true); |
69 | - frame.setSize(800, 600); | 69 | + frame.setSize(1000, 700); |
70 | frame.setLocationRelativeTo(null); | 70 | frame.setLocationRelativeTo(null); |
71 | 71 | ||
72 | } | 72 | } |
src/main/java/eu/omp/irap/vespa/epntapclient/gui/mainpanel/GUIDim.java
@@ -30,7 +30,7 @@ public class GUIDim { | @@ -30,7 +30,7 @@ public class GUIDim { | ||
30 | public static final int BOTTOM_PANEL_MIN_HEIGHT = 150; | 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 = 500; |
34 | 34 | ||
35 | /** The width of the left panel (services view). */ | 35 | /** The width of the left panel (services view). */ |
36 | public static final int LEFT_PANEL_WIDTH = 550; | 36 | public static final int LEFT_PANEL_WIDTH = 550; |
@@ -39,13 +39,13 @@ public class GUIDim { | @@ -39,13 +39,13 @@ public class GUIDim { | ||
39 | public static final int RIGHT_PANEL_MIN_WIDTH = 220; | 39 | public static final int RIGHT_PANEL_MIN_WIDTH = 220; |
40 | 40 | ||
41 | /** The width of the right panel (request view). */ | 41 | /** The width of the right panel (request view). */ |
42 | - public static final int RIGHT_PANEL_WIDTH = 450; | 42 | + public static final int RIGHT_PANEL_WIDTH = 230; |
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 = 300; | 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 = 150; | 48 | + public static final int TOP_PANEL_MIN_HEIGHT = 220; |
49 | 49 | ||
50 | 50 | ||
51 | /** Private constructor to hide the implicit public one. */ | 51 | /** Private constructor to hide the implicit public one. */ |