Skip to content

Commit

Permalink
FEM: FEMMesh2Mesh, move menu to a submenu Utilities in FEM menu
Browse files Browse the repository at this point in the history
  • Loading branch information
berndhahnebach committed Nov 25, 2016
1 parent f86da74 commit 04287d7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/Mod/Fem/Gui/Workbench.cpp
Expand Up @@ -114,10 +114,16 @@ Gui::MenuItem* Workbench::setupMenuBar() const
{
Gui::MenuItem* root = StdWorkbench::setupMenuBar();
Gui::MenuItem* item = root->findItem("&Windows");

Gui::MenuItem* util = new Gui::MenuItem;
util->setCommand("&Utilities");
*util << "Fem_FemMesh2Mesh";

Gui::MenuItem* fem = new Gui::MenuItem;
root->insertItem(item, fem);
fem->setCommand("&FEM");
*fem << "Fem_FemMesh2Mesh"
*fem << util
<< "Separator"
<< "Fem_Analysis"
<< "Fem_SolverCalculix"
<< "Fem_SolverZ88"
Expand Down

0 comments on commit 04287d7

Please sign in to comment.