0000903: V0.13 - Change Individual face color on solid is missing (finish this in 0.14)

This commit is contained in:
wmayer
2012-12-07 12:13:36 +01:00
parent 15fc11c16f
commit 430f35cb92
6 changed files with 92 additions and 1 deletions

View File

@@ -75,6 +75,18 @@ Gui::MenuItem* Workbench::setupMenuBar() const
<< "Part_RuledSurface" << "Part_Loft" << "Part_Sweep"
<< "Part_Offset" << "Part_Thickness";
// leave this for 0.14 until #0000477 is fixed
#if 0
Gui::MenuItem* view = root->findItem("&View");
if (view) {
Gui::MenuItem* appr = view->findItem("Std_RandomColor");
appr = view->afterItem(appr);
Gui::MenuItem* face = new Gui::MenuItem();
face->setCommand("Part_ColorPerFace");
view->insertItem(appr, face);
}
#endif
return root;
}