From e833a495fa16a17f967aafa2bd3a5c925084e03c Mon Sep 17 00:00:00 2001 From: Paddle Date: Wed, 20 Sep 2023 12:18:34 +0200 Subject: [PATCH] Add Std_SelBack and Std_SelForward to the Std_TreeViewActions group where they belong. This also solve the fact that these commands were not in the menu which are supposed to be exaustive. --- src/Gui/CommandView.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Gui/CommandView.cpp b/src/Gui/CommandView.cpp index 340133120c..948b12832c 100644 --- a/src/Gui/CommandView.cpp +++ b/src/Gui/CommandView.cpp @@ -3880,6 +3880,11 @@ public: addCommand(new StdTreeDrag(),!cmds.empty()); addCommand(new StdTreeSelection(),!cmds.empty()); + + addCommand(); + + addCommand(new StdCmdSelBack()); + addCommand(new StdCmdSelForward()); } const char* className() const override {return "StdCmdTreeViewActions";} };