From: nds Date: Fri, 22 Apr 2016 15:17:31 +0000 (+0300) Subject: Issue #1440 Crash when edit box with parameter: temporary undoes previous modificatio... X-Git-Tag: V_2.3.0~121 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=b52ce90edb127b6bce5f8b42e55875e306384ccf;p=modules%2Fshaper.git Issue #1440 Crash when edit box with parameter: temporary undoes previous modifications to fix unit tests on Linux --- diff --git a/src/PythonAPI/model/roots.py b/src/PythonAPI/model/roots.py index 2ba6a21de..5f1c294bf 100644 --- a/src/PythonAPI/model/roots.py +++ b/src/PythonAPI/model/roots.py @@ -24,10 +24,6 @@ class Feature(ModelAPI.ModelAPI_Feature): """F.getRealInput(str) -- get real value of the attribute""" return self.data().real(inputid).value() - def getTextInput(self, inputid): - """F.getTextInput(str) -- get text value of the attribute""" - return self.data().real(inputid).text() - def addResult(self, result): """F.addResult(ModelAPI_Result) -- add ModelAPI_Result shape as a result""" shape = result.shape() diff --git a/src/PythonAPI/model/sketcher/sketch.py b/src/PythonAPI/model/sketcher/sketch.py index 611e5d2ac..5303f7df5 100644 --- a/src/PythonAPI/model/sketcher/sketch.py +++ b/src/PythonAPI/model/sketcher/sketch.py @@ -362,16 +362,6 @@ class Sketch(Interface): """Modify the value of the given dimensional constraint.""" constraint.data().real("ConstraintValue").setValue(value) - #------------------------------------------------------------- - # - # Edition of Dimensional Constraints - # - #------------------------------------------------------------- - - def setText(self, constraint, text): - """Modify the value of the given dimensional constraint.""" - constraint.data().real("ConstraintValue").setText(text) - #------------------------------------------------------------- # # Macro functions combining geometry creation and constraints diff --git a/src/PythonAddons/macros/box/feature.py b/src/PythonAddons/macros/box/feature.py index 5100db2c6..686967df9 100644 --- a/src/PythonAddons/macros/box/feature.py +++ b/src/PythonAddons/macros/box/feature.py @@ -90,16 +90,9 @@ class BoxFeature(model.Feature): length = self.getRealInput(self.LENGTH_ID()) height = self.getRealInput(self.HEIGHT_ID()) - width_text = self.getTextInput(self.WIDTH_ID()) - length_text = self.getRealInput(self.LENGTH_ID()) - height_text = self.getRealInput(self.HEIGHT_ID()) - # Editing the box self.base.setValue(self.width, width) - self.base.setText(self.width, width_text) - self.base.setValue(self.length, length) - self.base.setText(self.width, length_text) self.box.setSize(height)