mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-04-05 12:28:26 +05:00
fix bug 10073. Check isVisible() in enterEvent() which unexpectedly comes after accept()
This commit is contained in:
parent
aeef41e893
commit
dcc030258b
@ -389,8 +389,7 @@ void SMESHGUI_CreatePatternDlg::onSave()
|
|||||||
//SUIT_Application::getDesktop()->setSelectionModes(ActorSelection);
|
//SUIT_Application::getDesktop()->setSelectionModes(ActorSelection);
|
||||||
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
|
if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
|
||||||
aViewWindow->SetSelectionMode(ActorSelection);
|
aViewWindow->SetSelectionMode(ActorSelection);
|
||||||
//disconnect(mySelectionMgr, 0, this, 0);
|
disconnect(mySelectionMgr, 0, this, 0);
|
||||||
disconnect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(onSelectionDone()));
|
|
||||||
disconnect(mySMESHGUI, 0, this, 0);
|
disconnect(mySMESHGUI, 0, this, 0);
|
||||||
mySMESHGUI->ResetState();
|
mySMESHGUI->ResetState();
|
||||||
accept();
|
accept();
|
||||||
@ -582,10 +581,13 @@ void SMESHGUI_CreatePatternDlg::onDeactivate()
|
|||||||
//=======================================================================
|
//=======================================================================
|
||||||
void SMESHGUI_CreatePatternDlg::enterEvent (QEvent*)
|
void SMESHGUI_CreatePatternDlg::enterEvent (QEvent*)
|
||||||
{
|
{
|
||||||
mySMESHGUI->EmitSignalDeactivateDialog();
|
// there is a stange problem that enterEvent() comes after onSave()
|
||||||
setEnabled(true);
|
if ( isVisible () ) {
|
||||||
activateSelection();
|
mySMESHGUI->EmitSignalDeactivateDialog();
|
||||||
connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), SLOT(onSelectionDone()));
|
setEnabled(true);
|
||||||
|
activateSelection();
|
||||||
|
connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), SLOT(onSelectionDone()));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//=================================================================================
|
//=================================================================================
|
||||||
|
Loading…
x
Reference in New Issue
Block a user