Bug 60332 - View Results Tree : With Windows LAF, JSON Extractor does not show JSON Path Expression and Result panel

Bugzilla Id: 60332

git-svn-id: https://svn.apache.org/repos/asf/jmeter/trunk@1767770 13f79535-47bb-0310-9956-ffa450edef68

Former-commit-id: 417c630661
This commit is contained in:
Philippe Mouawad 2016-11-02 19:43:52 +00:00
parent 6de93ff348
commit 274e9652a0
2 changed files with 4 additions and 2 deletions

View File

@ -188,13 +188,13 @@ public class RenderAsJsonRenderer implements ResultRenderer, ActionListener {
jsonDataField.setWrapStyleWord(true);
this.jsonDataPane = GuiUtils.makeScrollPane(jsonDataField);
jsonDataPane.setMinimumSize(new Dimension(0, 400));
jsonDataPane.setMinimumSize(new Dimension(100, 200));
JPanel panel = new JPanel(new BorderLayout(0, 5));
JSplitPane mainSplit = new JSplitPane(JSplitPane.VERTICAL_SPLIT,
jsonDataPane, createJSonPathExtractorTasksPanel());
mainSplit.setDividerLocation(400);
mainSplit.setDividerLocation(0.6d);
panel.add(mainSplit, BorderLayout.CENTER);
return panel;
}
@ -221,6 +221,7 @@ public class RenderAsJsonRenderer implements ResultRenderer, ActionListener {
jsonPathResultField.setEditable(false);
jsonPathResultField.setLineWrap(true);
jsonPathResultField.setWrapStyleWord(true);
jsonPathResultField.setMinimumSize(new Dimension(100, 150));
JPanel xpathTasksPanel = new JPanel(new BorderLayout(0, 5));
xpathTasksPanel.add(jsonPathActionPanel, BorderLayout.NORTH);

View File

@ -302,6 +302,7 @@ The HTML source code in the Results Tree View can now be viewed formatted. This
<ul>
<li><bug>59964</bug>JSR223 Test Element : Cache compiled script if available is not correctly reset. Contributed by Ubik Load Pack (support at ubikloadpack.com)</li>
<li><bug>59609</bug>Format extracted JSON Objects in JSON Post Processor correctly as JSON.</li>
<li><bug>60332</bug>View Results Tree : With Windows LAF, JSON Extractor does not show JSON Path Expression and Result panel</li>
</ul>
<h3>Functions</h3>