mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-26 17:30:35 +05:00
0022571: [CEA 1152] if selection disabled, impossible to select a mesh in "Merge nodes" in manual mode
This commit is contained in:
parent
b1f58b701e
commit
1176e29a2c
@ -682,6 +682,8 @@ bool SMESHGUI_MergeDlg::ClickOnApply()
|
|||||||
|
|
||||||
ListCoincident->clear();
|
ListCoincident->clear();
|
||||||
|
|
||||||
|
myEditCurrentArgument = (QWidget*)LineEditMesh;
|
||||||
|
|
||||||
SMESH::UpdateView();
|
SMESH::UpdateView();
|
||||||
SMESHGUI::Modified();
|
SMESHGUI::Modified();
|
||||||
|
|
||||||
@ -1139,7 +1141,7 @@ void SMESHGUI_MergeDlg::SelectionIntoArgument()
|
|||||||
if (!myActor)
|
if (!myActor)
|
||||||
myActor = SMESH::FindActorByObject(myMesh);
|
myActor = SMESH::FindActorByObject(myMesh);
|
||||||
|
|
||||||
if ( myActor && myTypeId ==1 ) {
|
if ( myActor && myTypeId == 1 && mySelector->IsSelectionEnabled() ) {
|
||||||
mySubMeshOrGroup = SMESH::SMESH_IDSource::_nil();
|
mySubMeshOrGroup = SMESH::SMESH_IDSource::_nil();
|
||||||
mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
|
mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user