mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-11 16:19:17 +05:00
0052938: Visibility of object is wrong when closing "Create group" dilaog
This commit is contained in:
parent
072d2d2cd9
commit
449aed5c8e
@ -88,7 +88,8 @@ GroupGUI_GroupDlg::GroupGUI_GroupDlg (Mode mode, GeometryGUI* theGeometryGUI, QW
|
||||
myBusy(false),
|
||||
myIsShapeType(false),
|
||||
myIsHiddenMain(false),
|
||||
myWasHiddenMain(true)
|
||||
myWasHiddenMain(true),
|
||||
myIsAccept(false)
|
||||
{
|
||||
SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
|
||||
|
||||
@ -235,10 +236,10 @@ GroupGUI_GroupDlg::~GroupGUI_GroupDlg()
|
||||
GEOM_Displayer* aDisplayer = getDisplayer();
|
||||
SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
|
||||
bool isHideObjects = resMgr->booleanValue( "Geometry", "hide_input_object", true);
|
||||
if (myWasHiddenMain) {
|
||||
if (myWasHiddenMain || ( isHideObjects && myIsAccept ) ) {
|
||||
myIsHiddenMain = true;
|
||||
}
|
||||
else if (!isHideObjects) {
|
||||
else {
|
||||
aDisplayer->Display(myMainObj);
|
||||
myIsHiddenMain = false;
|
||||
}
|
||||
@ -395,7 +396,8 @@ bool GroupGUI_GroupDlg::ClickOnApply()
|
||||
setIsDisplayResult( false );
|
||||
}
|
||||
|
||||
if (!onAccept(myMode == CreateGroup, true, isApplyAndClose()))
|
||||
myIsAccept = onAccept(myMode == CreateGroup, true, isApplyAndClose());
|
||||
if (!myIsAccept)
|
||||
return false;
|
||||
|
||||
if(!isApplyAndClose()) {
|
||||
|
@ -115,6 +115,7 @@ private:
|
||||
TColStd_DataMapOfIntegerInteger myMain2InPlaceIndices;
|
||||
QList<int> myGroupIdList;
|
||||
int myDmMode;
|
||||
bool myIsAccept;
|
||||
|
||||
QPushButton* mySelBtn;
|
||||
QLineEdit* myMainName;
|
||||
|
Loading…
Reference in New Issue
Block a user