add missing commands to tree context menu to be consistent with other WBs

This commit is contained in:
Max Wilfinger
2024-03-16 10:37:10 +01:00
committed by wwmayer
parent beb66d3cfb
commit c3409fa424

View File

@@ -237,13 +237,20 @@ void Workbench::setupContextMenu(const char* recipient, Gui::MenuItem* item) con
if (Gui::Selection().countObjectsOfType(App::DocumentObject::getClassTypeId()) > 0) {
*item << "Std_Placement"
<< "Std_ToggleVisibility"
<< "Std_ShowSelection"
<< "Std_HideSelection"
<< "Std_ToggleSelectability"
<< "Std_TreeSelectAllInstances"
<< "Separator"
<< "Std_SetAppearance"
<< "Std_RandomColor"
<< "Std_ToggleTransparency"
<< "Std_Cut"
<< "Std_Copy"
<< "Std_Paste"
<< "Separator"
<< "Std_Delete";
<< "Std_Delete"
<< "Separator";
}
}
}