Salome HOME
Fix for formula definition with '=' in an integer widget
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetDoubleValue.cpp
index 2b832511509c45997884e5456c6efc67a715aac9..90e44ba7ccae8c953285cc1fcd675bc303d03725 100644 (file)
@@ -169,7 +169,7 @@ bool ModuleBase_WidgetDoubleValue::storeValueCustom()
       } else {
         ModuleBase_Tools::editParameter(myParameter, aText);
       }
-      aText = aText.split('=').at(0); // +"=";
+      aText = aText.split('=').at(0);
     } else if (myParameter.get()){
       // Nullyfy the parameter reference without deletion of the created
       myParameter = FeaturePtr();