From 78249a8ed8d0dc6784225b2e2d2b5a56ec44b4b7 Mon Sep 17 00:00:00 2001 From: Max Wilfinger Date: Sat, 30 Mar 2024 07:54:36 +0100 Subject: [PATCH] add missing view top option + arrangement --- src/Gui/CommandView.cpp | 1 + src/Gui/Workbench.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Gui/CommandView.cpp b/src/Gui/CommandView.cpp index dfd8a553eb..21981ea47d 100644 --- a/src/Gui/CommandView.cpp +++ b/src/Gui/CommandView.cpp @@ -1655,6 +1655,7 @@ public: addCommand("Std_ViewIsometric"); addCommand("Std_ViewFront"); + addCommand("Std_ViewTop"); addCommand("Std_ViewRight"); addCommand("Std_ViewRear"); addCommand("Std_ViewBottom"); diff --git a/src/Gui/Workbench.cpp b/src/Gui/Workbench.cpp index 7da27f86c6..79a2f23fb6 100644 --- a/src/Gui/Workbench.cpp +++ b/src/Gui/Workbench.cpp @@ -822,8 +822,8 @@ ToolBarItem* StdWorkbench::setupToolBars() const individualViews->setCommand("Individual views"); *individualViews << "Std_ViewIsometric" << "Std_ViewFront" - << "Std_ViewRight" << "Std_ViewTop" + << "Std_ViewRight" << "Std_ViewRear" << "Std_ViewLeft" << "Std_ViewBottom";