mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-02-15 21:43:07 +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 "SALOME_ListIO.hxx"
|
||||
|
||||
#include "SalomeApp_Tools.h"
|
||||
#include "utilities.h"
|
||||
|
||||
// OCCT Includes
|
||||
@ -257,7 +258,11 @@ void SMESHGUI_RemoveElementsDlg::ClickOnApply()
|
||||
try {
|
||||
SMESH::SMESH_MeshEditor_var aMeshEditor = myMesh->GetMeshEditor();
|
||||
aResult = aMeshEditor->RemoveElements(anArrayOfIdeces.inout());
|
||||
} catch (const SALOME::SALOME_Exception& S_ex) {
|
||||
SalomeApp_Tools::QtCatchCorbaException(S_ex);
|
||||
myEditCurrentArgument->clear();
|
||||
} catch (...){
|
||||
myEditCurrentArgument->clear();
|
||||
}
|
||||
|
||||
if (aResult) {
|
||||
|
Loading…
Reference in New Issue
Block a user