From bfce8429ee61c2ea4621c67c08a8da4ee4f12082 Mon Sep 17 00:00:00 2001 From: asv Date: Fri, 17 Jun 2005 10:55:55 +0000 Subject: [PATCH] Fix for a bug: a command with id 8001 is the same as 800 (create group) but called from a popup (another caption). so we let it to be handled just as command id 800. --- src/GroupGUI/GroupGUI.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/GroupGUI/GroupGUI.cxx b/src/GroupGUI/GroupGUI.cxx index 788ac2a39..317b2e20a 100644 --- a/src/GroupGUI/GroupGUI.cxx +++ b/src/GroupGUI/GroupGUI.cxx @@ -95,6 +95,7 @@ bool GroupGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent ) switch ( theCommandID ) { case 800: + case 8001: aDlg = new GroupGUI_GroupDlg( GroupGUI_GroupDlg::CreateGroup, parent, ""); break; case 801: