From b2ea8b9868eb940052f1217caeb360e572434756 Mon Sep 17 00:00:00 2001 From: dmv Date: Tue, 8 Sep 2009 11:41:45 +0000 Subject: [PATCH] IPAL21355 Point Construction dialog box: selection doesn't work if another dialog box has been opened. --- src/BasicGUI/BasicGUI_PointDlg.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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() ); } -- 2.39.2