From: dmv Date: Tue, 8 Sep 2009 11:40:31 +0000 (+0000) Subject: IPAL21355 Point Construction dialog box: selection doesn't work if another dialog... X-Git-Tag: V4_1_0_maintainance_FINAL~12 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=b0e2877f45c4f66e4e75d05315c7899cac487012;p=modules%2Fgeom.git IPAL21355 Point Construction dialog box: selection doesn't work if another dialog box has been opened. --- diff --git a/src/BasicGUI/BasicGUI_PointDlg.cxx b/src/BasicGUI/BasicGUI_PointDlg.cxx index 9d92f5b99..1bf62cfb6 100644 --- a/src/BasicGUI/BasicGUI_PointDlg.cxx +++ b/src/BasicGUI/BasicGUI_PointDlg.cxx @@ -578,7 +578,10 @@ void BasicGUI_PointDlg::enterEvent(QEvent* e) void BasicGUI_PointDlg::ActivateThisDialog( ) { GEOMBase_Skeleton::ActivateThisDialog(); - // myGeomGUI->SetState( 0 ); + + connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ), + this, SLOT( SelectionIntoArgument() ) ); + ConstructorsClicked( getConstructorId() ); }