diff --git a/src/main/java/eu/omp/irap/vespa/epntapclient/EpnTapMainApp.java b/src/main/java/eu/omp/irap/vespa/epntapclient/EpnTapMainApp.java index 6494475..4c4e1b0 100644 --- a/src/main/java/eu/omp/irap/vespa/epntapclient/EpnTapMainApp.java +++ b/src/main/java/eu/omp/irap/vespa/epntapclient/EpnTapMainApp.java @@ -66,7 +66,7 @@ public class EpnTapMainApp { frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setContentPane(guiCtrl.getView()); frame.setVisible(true); - frame.setSize(800, 600); + frame.setSize(1000, 700); frame.setLocationRelativeTo(null); } 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 ea193e7..ca2d465 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 @@ -30,7 +30,7 @@ public class GUIDim { 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; + public static final int LEFT_PANEL_MIN_WIDTH = 500; /** The width of the left panel (services view). */ public static final int LEFT_PANEL_WIDTH = 550; @@ -39,13 +39,13 @@ public class GUIDim { public static final int RIGHT_PANEL_MIN_WIDTH = 220; /** The width of the right panel (request view). */ - public static final int RIGHT_PANEL_WIDTH = 450; + public static final int RIGHT_PANEL_WIDTH = 230; /** The height of the top panel (request view and services view). */ 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 = 150; + public static final int TOP_PANEL_MIN_HEIGHT = 220; /** Private constructor to hide the implicit public one. */ -- libgit2 0.21.2