fixes 0003700: Tree object deletion possible with keyboard but not right-click menu in Part Design

This commit is contained in:
wmayer
2019-01-14 00:47:22 +01:00
parent c26ac76083
commit e5a1f3b496

View File

@@ -227,7 +227,12 @@ void Workbench::setupContextMenu(const char* recipient, Gui::MenuItem* item) con
if (Gui::Selection().countObjectsOfType(App::DocumentObject::getClassTypeId()) > 0) {
*item << "Std_SetAppearance"
<< "Std_RandomColor";
<< "Std_RandomColor"
<< "Std_Cut"
<< "Std_Copy"
<< "Std_Paste"
<< "Separator"
<< "Std_Delete";
}
}
}