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.
This commit is contained in:
Paddle
2023-09-20 12:18:34 +02:00
parent b77ab713b3
commit e833a495fa

View File

@@ -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";}
};