From: azv Date: Tue, 13 Jul 2021 05:50:01 +0000 (+0300) Subject: Issue #24357: Export mesh with field on vertices X-Git-Tag: V9_8_0a1~32 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=081a45f43c7abe85af9c2bdc900438a240197e70;p=modules%2Fshaper.git Issue #24357: Export mesh with field on vertices Correct the order of field results --- diff --git a/src/Model/Model_ResultField.cpp b/src/Model/Model_ResultField.cpp index 837f92000..e60919a38 100644 --- a/src/Model/Model_ResultField.cpp +++ b/src/Model/Model_ResultField.cpp @@ -90,7 +90,7 @@ std::shared_ptr Model_ResultField::shape() for(int a = aList->size() - 1; a >= 0; a--) { std::shared_ptr aSelection = aList->value(a)->value(); if (aSelection && !aSelection->isNull()) { - aSubs.push_back(aSelection); + aSubs.push_front(aSelection); } } }