From 7682a78bed5d4f6943857135948bd9083dfe71f2 Mon Sep 17 00:00:00 2001 From: Christophe Bourcier Date: Mon, 4 Dec 2017 13:21:28 +0100 Subject: [PATCH] Fix XAO Part uppercase --- 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 e60c104e2..f10f316dc 100644 --- a/src/ExchangePlugin/ExchangePlugin_Tools.cpp +++ b/src/ExchangePlugin/ExchangePlugin_Tools.cpp @@ -44,7 +44,7 @@ std::string ExchangePlugin_Tools::selectionType2xaoDimension(const std::string& return "face"; else if (theType == "Solids" || theType == "solid" || theType == "SOLID") return "solid"; - else if (theType == "Part" || theType == "part") + else if (theType == "Part" || theType == "part" || theType == "PART") return "part"; return std::string(); -- 2.39.2