From c25714a9012243bcabcf495e35255a0d01a913a8 Mon Sep 17 00:00:00 2001 From: akl Date: Mon, 28 Feb 2011 09:00:21 +0000 Subject: [PATCH] IPAL22292 (Gauss Points doesn't appear in Clipping Planes after reload file): GaussPoints presentation was not taken into account in 'GetPrs3dList' method because of 'theGP' flag is 'false' by default. --- src/VISUGUI/VisuGUI_ClippingPanel.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/VISUGUI/VisuGUI_ClippingPanel.cxx b/src/VISUGUI/VisuGUI_ClippingPanel.cxx index 9a8ee781..b841cce0 100644 --- a/src/VISUGUI/VisuGUI_ClippingPanel.cxx +++ b/src/VISUGUI/VisuGUI_ClippingPanel.cxx @@ -366,7 +366,7 @@ QStringList VisuGUI_ClippingPanel::getPrsList(_PTR(Study) theStudy, _PTR(ChildIterator) aIter = theStudy->NewChildIterator(theObject); for (aIter->InitEx(true); aIter->More(); aIter->Next()) { _PTR(SObject) aSObject = aIter->Value(); - std::vector aSTLList = VISU::GetPrs3dList(myModule, aSObject); + std::vector aSTLList = VISU::GetPrs3dList(myModule, aSObject, true /* enable GaussPoints */); for (int i = 0; i < aSTLList.size(); i++) { VISU::Prs3d_i* aPrs = aSTLList[i]; if (!aList.contains(aPrs->GetEntry().c_str())) -- 2.39.2