Skip to content

Commit

Permalink
GUI: Remove copy cut print paste from File toolbar (#7571)
Browse files Browse the repository at this point in the history
As discussed in the forums poll at https://forum.freecadweb.org/viewtopic.php?f=8&t=71924

Co-authored-by: Paddle <PaddleStroke@users.noreply.github.com>
  • Loading branch information
PaddleStroke and PaddleStroke committed Oct 7, 2022
1 parent 0f29e91 commit 3b7350d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Gui/Workbench.cpp
Expand Up @@ -763,8 +763,8 @@ ToolBarItem* StdWorkbench::setupToolBars() const
// File
auto 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"
*file << "Std_New" << "Std_Open" << "Std_Save" << "Std_Print" << "Separator"
<< "Std_Undo" << "Std_Redo" << "Separator"
<< "Std_Refresh" << "Separator" << "Std_WhatsThis";

// Workbench switcher
Expand Down

0 comments on commit 3b7350d

Please sign in to comment.