[Bf-blender-cvs] [02404ded80a] blender-v2.92-release: Fix UI message typo in own previous commit.

Bastien Montagne noreply at git.blender.org
Mon Jan 25 11:06:57 CET 2021


Commit: 02404ded80ac7d861a45a36960d0a3b279bbf721
Author: Bastien Montagne
Date:   Mon Jan 25 11:06:21 2021 +0100
Branches: blender-v2.92-release
https://developer.blender.org/rB02404ded80ac7d861a45a36960d0a3b279bbf721

Fix UI message typo in own previous commit.

//sigh//

===================================================================

M	source/blender/makesrna/intern/rna_pose.c

===================================================================

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



More information about the Bf-blender-cvs mailing list