From 7720925e28bbdd764269b32062ce12c28f351d4e Mon Sep 17 00:00:00 2001 From: PaddleStroke Date: Fri, 7 Oct 2022 18:43:41 +0200 Subject: [PATCH] GUI: Remove copy cut print paste from File toolbar (#7571) As discussed in the forums poll at https://forum.freecadweb.org/viewtopic.php?f=8&t=71924 Co-authored-by: Paddle --- src/Gui/Workbench.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Gui/Workbench.cpp b/src/Gui/Workbench.cpp index 67f8268c84..bb329219f5 100644 --- a/src/Gui/Workbench.cpp +++ b/src/Gui/Workbench.cpp @@ -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