Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <bastien@blender.org>2021-01-25 13:06:21 +0300
committerBastien Montagne <bastien@blender.org>2021-01-25 13:06:21 +0300
commit02404ded80ac7d861a45a36960d0a3b279bbf721 (patch)
tree19abd504ed618636854abfa083685065f485b995 /source/blender/makesrna/intern/rna_pose.c
parent3df2bea88be49d396894bf7495b573c0683ad219 (diff)
Fix UI message typo in own previous commit.
//sigh//
Diffstat (limited to 'source/blender/makesrna/intern/rna_pose.c')
-rw-r--r--source/blender/makesrna/intern/rna_pose.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_pose.c b/source/blender/makesrna/intern/rna_pose.c
index 996a1ebc5c7..89a6c7cdf9d 100644
--- a/source/blender/makesrna/intern/rna_pose.c
+++ b/source/blender/makesrna/intern/rna_pose.c
@@ -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 boneg roups for proxies or library overrides");
+ BKE_report(reports, RPT_ERROR, "Cannot edit bone groups for proxies or library overrides");
return false;
}