mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-12 00:29:17 +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();
|
||||
|
||||
myEditCurrentArgument = (QWidget*)LineEditMesh;
|
||||
|
||||
SMESH::UpdateView();
|
||||
SMESHGUI::Modified();
|
||||
|
||||
@ -1139,7 +1141,7 @@ void SMESHGUI_MergeDlg::SelectionIntoArgument()
|
||||
if (!myActor)
|
||||
myActor = SMESH::FindActorByObject(myMesh);
|
||||
|
||||
if ( myActor && myTypeId ==1 ) {
|
||||
if ( myActor && myTypeId == 1 && mySelector->IsSelectionEnabled() ) {
|
||||
mySubMeshOrGroup = SMESH::SMESH_IDSource::_nil();
|
||||
mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user