+ remove Part_ShapeInfo command

git-svn-id: https://free-cad.svn.sourceforge.net/svnroot/free-cad/trunk@5157 e8eeb9e2-ec13-0410-a4a9-efa5cf37419d
This commit is contained in:
wmayer
2011-11-23 09:05:06 +00:00
parent 3b4dde6799
commit 978392f78a
8 changed files with 10 additions and 175 deletions

View File

@@ -67,7 +67,7 @@ Gui::MenuItem* Workbench::setupMenuBar() const
<< "Part_Boolean" << "Part_CrossSections" << "Part_Extrude"
<< "Part_Revolve" << "Part_Mirror" << "Part_Fillet"
<< "Part_RuledSurface" << "Part_Loft"
<< "Part_Builder" << "Separator" << "Part_ShapeInfo";
<< "Part_Builder";
Gui::MenuItem* partSimple = new Gui::MenuItem;
root->insertItem(item, partSimple);
@@ -97,7 +97,7 @@ Gui::ToolBarItem* Workbench::setupToolBars() const
Gui::ToolBarItem* boolop = new Gui::ToolBarItem(root);
boolop->setCommand("Boolean");
*boolop << "Part_Boolean" << "Part_Cut" << "Part_Fuse" << "Part_Common" << "Part_Section"/* << "Part_ShapeInfo"*/;
*boolop << "Part_Boolean" << "Part_Cut" << "Part_Fuse" << "Part_Common" << "Part_Section";
return root;
}