From: mpv Date: Wed, 26 Sep 2018 15:51:26 +0000 (+0300) Subject: Fix for the issue #2648: field with Parts as Type of shapes problem X-Git-Tag: CEA_2018-2~62^2~6 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=ca00b7f8da8c19dceb0fe65d7957bbe820e677f9;p=modules%2Fshaper.git Fix for the issue #2648: field with Parts as Type of shapes problem --- diff --git a/src/ExchangePlugin/ExchangePlugin_Tools.cpp b/src/ExchangePlugin/ExchangePlugin_Tools.cpp index 1d2000236..7ef4bdcf9 100644 --- a/src/ExchangePlugin/ExchangePlugin_Tools.cpp +++ b/src/ExchangePlugin/ExchangePlugin_Tools.cpp @@ -43,7 +43,7 @@ std::string ExchangePlugin_Tools::selectionType2xaoDimension(const std::string& else if (theType == "Solids" || theType == "solid" || theType == "SOLID") return "solid"; else if (theType == "Part" || theType == "part" || theType == "PART") - return "part"; + return "whole"; return std::string(); }