From ca00b7f8da8c19dceb0fe65d7957bbe820e677f9 Mon Sep 17 00:00:00 2001 From: mpv Date: Wed, 26 Sep 2018 18:51:26 +0300 Subject: [PATCH] Fix for the issue #2648: field with Parts as Type of shapes problem --- src/ExchangePlugin/ExchangePlugin_Tools.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } -- 2.39.2