From: mzn Date: Mon, 27 Mar 2006 08:02:01 +0000 (+0000) Subject: Fix for bug IPAL10430 (TC: GEOM: Create group ? Ids of selected entities don?t disapp... X-Git-Tag: T3_2_0b1_pre1~25 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=9af6cf04a1750bcda2a935291ed8729aa419d01d;p=modules%2Fgeom.git Fix for bug IPAL10430 (TC: GEOM: Create group ? Ids of selected entities don?t disappear after Apply). --- diff --git a/src/GroupGUI/GroupGUI_GroupDlg.cxx b/src/GroupGUI/GroupGUI_GroupDlg.cxx index dd0597ab7..0c4842861 100644 --- a/src/GroupGUI/GroupGUI_GroupDlg.cxx +++ b/src/GroupGUI/GroupGUI_GroupDlg.cxx @@ -218,7 +218,10 @@ bool GroupGUI_GroupDlg::ClickOnApply() return false; if ( myMode == CreateGroup ) - initName(); + { + initName(); + myIdList->clear(); + } return true; }