Skip to content

Commit

Permalink
Relocated the WB switcher to its original location
Browse files Browse the repository at this point in the history
  • Loading branch information
yorikvanhavre committed Nov 26, 2015
1 parent 3d6869b commit e0f3bb0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Gui/Workbench.cpp
Expand Up @@ -570,18 +570,18 @@ ToolBarItem* StdWorkbench::setupToolBars() const
{
ToolBarItem* root = new ToolBarItem;

// Workbench switcher
ToolBarItem* wb = new ToolBarItem( root );
wb->setCommand("Workbench");
*wb << "Std_Workbench";

// File
ToolBarItem* file = new ToolBarItem( root );
file->setCommand("File");
*file << "Std_New" << "Std_Open" << "Std_Save" << "Std_Print" << "Separator" << "Std_Cut"
<< "Std_Copy" << "Std_Paste" << "Separator" << "Std_Undo" << "Std_Redo" << "Separator"
<< "Std_Refresh" << "Separator" << "Std_WhatsThis";

// Workbench switcher
ToolBarItem* wb = new ToolBarItem( root );
wb->setCommand("Workbench");
*wb << "Std_Workbench";

// Macro
ToolBarItem* macro = new ToolBarItem( root );
macro->setCommand("Macro");
Expand Down

0 comments on commit e0f3bb0

Please sign in to comment.