Merge branch 'blender-v2.92-release'

This commit is contained in:
Bastien Montagne 2021-01-25 10:56:55 +01:00
commit a0b85800ec
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ static bool pose_group_poll(bContext *C)
Object *obpose = ED_pose_object_from_context(C);
if ((obpose->proxy != NULL) || (obpose->proxy_group != NULL) || ID_IS_OVERRIDE_LIBRARY(obpose)) {
CTX_wm_operator_poll_msg_set(C, "Cannot edit bonegroups for proxies or library overrides");
CTX_wm_operator_poll_msg_set(C, "Cannot edit bone groups for proxies or library overrides");
return false;
}

View File

@ -141,7 +141,7 @@ static char *rna_PoseBone_path(PointerRNA *ptr)
static bool rna_bone_group_poll(Object *ob, ReportList *reports)
{
if ((ob->proxy != NULL) || (ob->proxy_group != NULL) || ID_IS_OVERRIDE_LIBRARY(ob)) {
BKE_report(reports, RPT_ERROR, "Cannot edit bonegroups for proxies or library overrides");
BKE_report(reports, RPT_ERROR, "Cannot edit boneg roups for proxies or library overrides");
return false;
}