Commit 2e76fb046287849f8b5a21c818193101df64073d
1 parent
8154d353
Exists in
master
main panel: revalidate after setting size.
Showing
1 changed file
with
1 additions
and
2 deletions
Show diff stats
src/main/java/eu/omp/irap/vespa/epntapclient/gui/mainpanel/MainPanelView.java
... | ... | @@ -101,11 +101,10 @@ public class MainPanelView extends JPanel { |
101 | 101 | JSplitPane northPanel = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, servicesPanel, |
102 | 102 | requestPanel); |
103 | 103 | JSplitPane mainPanel = new JSplitPane(JSplitPane.VERTICAL_SPLIT, northPanel, resultPanel); |
104 | - | |
105 | 104 | add(mainPanel, BorderLayout.CENTER); |
106 | 105 | |
107 | - revalidate(); | |
108 | 106 | setSizes(); |
107 | + revalidate(); | |
109 | 108 | } |
110 | 109 | |
111 | 110 | /** | ... | ... |