You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2015/02/28 21:29:25 UTC

svn commit: r1662998 - in /jmeter/trunk: src/core/org/apache/jmeter/control/gui/TestFragmentControllerGui.java xdocs/changes.xml

Author: pmouawad
Date: Sat Feb 28 20:29:25 2015
New Revision: 1662998

URL: http://svn.apache.org/r1662998
Log:
Bug 57648 - TestFragment should be disabled when created
Bugzilla Id: 57648

Modified:
    jmeter/trunk/src/core/org/apache/jmeter/control/gui/TestFragmentControllerGui.java
    jmeter/trunk/xdocs/changes.xml

Modified: jmeter/trunk/src/core/org/apache/jmeter/control/gui/TestFragmentControllerGui.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/control/gui/TestFragmentControllerGui.java?rev=1662998&r1=1662997&r2=1662998&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/control/gui/TestFragmentControllerGui.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/control/gui/TestFragmentControllerGui.java Sat Feb 28 20:29:25 2015
@@ -46,6 +46,7 @@ public class TestFragmentControllerGui e
     @Override
     public TestElement createTestElement() {
         TestFragmentController controller = new TestFragmentController();
+        setEnabled(false);
         modifyTestElement(controller);
         return controller;
     }

Modified: jmeter/trunk/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/changes.xml?rev=1662998&r1=1662997&r2=1662998&view=diff
==============================================================================
--- jmeter/trunk/xdocs/changes.xml (original)
+++ jmeter/trunk/xdocs/changes.xml Sat Feb 28 20:29:25 2015
@@ -97,6 +97,7 @@ Summary
 <h3>Controllers</h3>
 <ul>
 <li><bug>57561</bug>Module controller UI : Replace combobox by tree. Contributed by Maciej Franek (maciej.franek at gmail.com)</li>
+<li><bug>57648</bug>TestFragment should be disabled when created. Contributed by Ubik Load Pack (support at ubikloadpack.com)</li>
 </ul>
 
 <h3>Listeners</h3>