From: dmv Date: Tue, 8 Sep 2009 11:41:45 +0000 (+0000) Subject: IPAL21355 Point Construction dialog box: selection doesn't work if another dialog... X-Git-Tag: V5_1_3rc1~37 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=b2ea8b9868eb940052f1217caeb360e572434756;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 3014eec2b..f39c00dd7 100644 --- a/src/BasicGUI/BasicGUI_PointDlg.cxx +++ b/src/BasicGUI/BasicGUI_PointDlg.cxx @@ -646,7 +646,10 @@ void BasicGUI_PointDlg::enterEvent( QEvent* ) void BasicGUI_PointDlg::ActivateThisDialog( ) { GEOMBase_Skeleton::ActivateThisDialog(); - // myGeomGUI->SetState( 0 ); + + connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ), + this, SLOT( SelectionIntoArgument() ) ); + ConstructorsClicked( getConstructorId() ); }