This commit is contained in:
san 2005-01-20 14:23:35 +00:00
parent 1c725ec71e
commit b0937de45d
2 changed files with 4 additions and 0 deletions

View File

@ -114,6 +114,9 @@ void GEOMBase_Skeleton::ClickOnCancel()
//================================================================================= //=================================================================================
void GEOMBase_Skeleton::LineEditReturnPressed() void GEOMBase_Skeleton::LineEditReturnPressed()
{ {
if ( !myEditCurrentArgument )
return;
/* User name of object input management */ /* User name of object input management */
/* If successfull the selection is changed and signal emitted... */ /* If successfull the selection is changed and signal emitted... */
/* so SelectionIntoArgument() is automatically called. */ /* so SelectionIntoArgument() is automatically called. */

View File

@ -385,6 +385,7 @@ void RepairGUI_ShapeProcessDlg::selectionChanged()
//================================================================================= //=================================================================================
void RepairGUI_ShapeProcessDlg::selectClicked() void RepairGUI_ShapeProcessDlg::selectClicked()
{ {
myEditCurrentArgument = mySelectWdgt->LineEdit1;
mySelectWdgt->LineEdit1->setFocus(); mySelectWdgt->LineEdit1->setFocus();
selectionChanged(); selectionChanged();
} }