From: nds Date: Fri, 20 Mar 2015 09:42:54 +0000 (+0300) Subject: Construction bug fix: the current operation should not be aborted on the popup menu... X-Git-Tag: V_1.1.0~98 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=b0a715a86a0e974894b4cd8c6e2369e9fda85f39;p=modules%2Fshaper.git Construction bug fix: the current operation should not be aborted on the popup menu build. --- diff --git a/src/PartSet/PartSet_Module.cpp b/src/PartSet/PartSet_Module.cpp index a04ce1ee1..489db5aed 100644 --- a/src/PartSet/PartSet_Module.cpp +++ b/src/PartSet/PartSet_Module.cpp @@ -561,11 +561,8 @@ bool PartSet_Module::deleteObjects() if (aSelectedObj.count() == 0) return false; - if (isNestedOp) - anOperation->abort(); - // the active nested sketch operation should be aborted unconditionally - if (PartSet_SketcherMgr::isNestedSketchOperation(anOperation)) + if (isNestedOp) anOperation->abort(); std::set aRefFeatures;