From: vsv Date: Thu, 6 Feb 2020 14:54:45 +0000 (+0300) Subject: Update state of Apply and Continue button X-Git-Tag: V9_5_0a1~28 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=bdfef16c6cd1f7cb83c1a1117e3e3d76b7063c26;p=modules%2Fshaper.git Update state of Apply and Continue button --- diff --git a/src/XGUI/XGUI_Workshop.cpp b/src/XGUI/XGUI_Workshop.cpp index 0b587f157..bb845edb3 100644 --- a/src/XGUI/XGUI_Workshop.cpp +++ b/src/XGUI/XGUI_Workshop.cpp @@ -1293,6 +1293,7 @@ void XGUI_Workshop::onImportPart() if (abortAllOperations()) { ModuleBase_OperationFeature* anImportPartOp = dynamic_cast( module()->createOperation(ExchangePlugin_ImportPart::ID())); + myPropertyPanel->updateApplyPlusButton(anImportPartOp->feature()); operationMgr()->startOperation(anImportPartOp); } } @@ -1303,6 +1304,7 @@ void XGUI_Workshop::onExportPart() if (abortAllOperations()) { ModuleBase_OperationFeature* anExportPartOp = dynamic_cast( module()->createOperation(ExchangePlugin_ExportPart::ID())); + myPropertyPanel->updateApplyPlusButton(anExportPartOp->feature()); operationMgr()->startOperation(anExportPartOp); } }