Author: pmouawad
Date: Tue Jan 3 19:42:10 2017
New Revision: 1777206
URL: http://svn.apache.org/viewvc?rev=1777206&view=rev
Log:
Bug 60548 - HTTP Request : Allow Upper Panel to be collapsed
Bugzilla Id: 60548
Modified:
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/gui/HttpTestSampleGui.java
jmeter/trunk/xdocs/changes.xml
Modified:
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/gui/HttpTestSampleGui.java
URL:
http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/gui/HttpTestSampleGui.java?rev=1777206&r1=1777205&r2=1777206&view=diff
==============================================================================
---
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/gui/HttpTestSampleGui.java
(original)
+++
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/gui/HttpTestSampleGui.java
Tue Jan 3 19:42:10 2017
@@ -30,6 +30,7 @@ import javax.swing.JComboBox;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JPasswordField;
+import javax.swing.JSplitPane;
import javax.swing.JTabbedPane;
import javax.swing.JTextField;
import javax.swing.UIManager;
@@ -202,12 +203,9 @@ public class HttpTestSampleGui extends A
tabbedPane.add(JMeterUtils
.getResString("web_testing_advanced"), advancedPanel);
- JPanel emptyPanel = new JPanel();
- emptyPanel.setMaximumSize(new Dimension());
-
- add(makeTitlePanel(), BorderLayout.NORTH);
- add(tabbedPane, BorderLayout.CENTER);
- add(emptyPanel, BorderLayout.SOUTH);
+ JSplitPane splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT,
makeTitlePanel(), tabbedPane);
+ splitPane.setOneTouchExpandable(true);
+ add(splitPane);
}
private JPanel getTimeOutPanel() {
Modified: jmeter/trunk/xdocs/changes.xml
URL:
http://svn.apache.org/viewvc/jmeter/trunk/xdocs/changes.xml?rev=1777206&r1=1777205&r2=1777206&view=diff
==============================================================================
--- jmeter/trunk/xdocs/changes.xml [utf-8] (original)
+++ jmeter/trunk/xdocs/changes.xml [utf-8] Tue Jan 3 19:42:10 2017
@@ -109,6 +109,7 @@ Fill in some detail.
<ul>
<li><bug>59934</bug>Fix race-conditions in CssParser. Based on a patch by
Jerome Loisel (loisel.jerome at gmail.com)</li>
<li><bug>60543</bug>HTTP Request / Http Request Defaults UX: Move to
advanced panel Timeouts, Implementation, Proxy. Implemented by Philippe Mouawad
(p.mouawad at ubik-ingenierie.com) and contributed by Ubik Load Pack (support
at ubikloadpack.com)</li>
+ <li><bug>60548</bug>HTTP Request : Allow Upper Panel to be collapsed</li>
</ul>
<h3>Other samplers</h3>