mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-02-16 13:33:08 +05:00
Fix for RedHat8.0 Bug IPAL10936:
Polygonal face cannot be selected
This commit is contained in:
parent
29923cc512
commit
60665280b0
@ -45,6 +45,7 @@
|
|||||||
#include "SVTK_ViewWindow.h"
|
#include "SVTK_ViewWindow.h"
|
||||||
#include "SALOME_ListIO.hxx"
|
#include "SALOME_ListIO.hxx"
|
||||||
|
|
||||||
|
#include "SalomeApp_Tools.h"
|
||||||
#include "utilities.h"
|
#include "utilities.h"
|
||||||
|
|
||||||
// OCCT Includes
|
// OCCT Includes
|
||||||
@ -257,7 +258,11 @@ void SMESHGUI_RemoveElementsDlg::ClickOnApply()
|
|||||||
try {
|
try {
|
||||||
SMESH::SMESH_MeshEditor_var aMeshEditor = myMesh->GetMeshEditor();
|
SMESH::SMESH_MeshEditor_var aMeshEditor = myMesh->GetMeshEditor();
|
||||||
aResult = aMeshEditor->RemoveElements(anArrayOfIdeces.inout());
|
aResult = aMeshEditor->RemoveElements(anArrayOfIdeces.inout());
|
||||||
} catch (...) {
|
} catch (const SALOME::SALOME_Exception& S_ex) {
|
||||||
|
SalomeApp_Tools::QtCatchCorbaException(S_ex);
|
||||||
|
myEditCurrentArgument->clear();
|
||||||
|
} catch (...){
|
||||||
|
myEditCurrentArgument->clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (aResult) {
|
if (aResult) {
|
||||||
|
Loading…
Reference in New Issue
Block a user