From 0b294a955c56317bb08db69bac38f50b289816e2 Mon Sep 17 00:00:00 2001 From: Chris Hennes Date: Fri, 7 Oct 2022 14:20:40 -0500 Subject: [PATCH] Gui: Remove Print from toolbar Inadvertently left by previous commit. --- src/Gui/Workbench.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/Workbench.cpp b/src/Gui/Workbench.cpp index bb329219f5..9ec45e2ef4 100644 --- a/src/Gui/Workbench.cpp +++ b/src/Gui/Workbench.cpp @@ -763,7 +763,7 @@ ToolBarItem* StdWorkbench::setupToolBars() const // File auto file = new ToolBarItem( root ); file->setCommand("File"); - *file << "Std_New" << "Std_Open" << "Std_Save" << "Std_Print" << "Separator" + *file << "Std_New" << "Std_Open" << "Std_Save" << "Separator" << "Std_Undo" << "Std_Redo" << "Separator" << "Std_Refresh" << "Separator" << "Std_WhatsThis";