mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-01 04:10:34 +05:00
Fix for the IPAL22041 TC5.1.5: "Fillet Construcion" dialog loses current selection:
The method SelectionIntoArgument() must be called once inside ConstructorsClicked(int) in case of the creation of the dialog, i.e. myInitial == true;
This commit is contained in:
parent
80140e06c4
commit
53ee70f9ba
@ -298,7 +298,6 @@ void OperationGUI_FilletDlg::ConstructorsClicked (int constructorId)
|
|||||||
qApp->processEvents();
|
qApp->processEvents();
|
||||||
updateGeometry();
|
updateGeometry();
|
||||||
resize(minimumSizeHint());
|
resize(minimumSizeHint());
|
||||||
SelectionIntoArgument();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//=================================================================================
|
//=================================================================================
|
||||||
@ -398,7 +397,7 @@ void OperationGUI_FilletDlg::SelectionIntoArgument()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// clear selection
|
// clear selection of the faces or edges
|
||||||
if (!(myEditCurrentArgument == Group2->LineEdit2 ||
|
if (!(myEditCurrentArgument == Group2->LineEdit2 ||
|
||||||
myEditCurrentArgument == Group3->LineEdit2)) {
|
myEditCurrentArgument == Group3->LineEdit2)) {
|
||||||
disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
|
disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user