Salome HOME
Fix XAO Part uppercase
authorChristophe Bourcier <christophe.bourcier@cea.fr>
Mon, 4 Dec 2017 12:21:28 +0000 (13:21 +0100)
committerChristophe Bourcier <christophe.bourcier@cea.fr>
Mon, 4 Dec 2017 12:21:28 +0000 (13:21 +0100)
src/ExchangePlugin/ExchangePlugin_Tools.cpp

index e60c104e2df189507cda09e53b99dce4a7313d15..f10f316dc51db804a0d1ec6748ad475e0599c0b4 100644 (file)
@@ -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();