[Bf-blender-cvs] [3df2bea88be] blender-v2.92-release: Fix UI messages.

Bastien Montagne noreply at git.blender.org
Mon Jan 25 10:56:41 CET 2021


Commit: 3df2bea88be49d396894bf7495b573c0683ad219
Author: Bastien Montagne
Date:   Mon Jan 25 10:55:44 2021 +0100
Branches: blender-v2.92-release
https://developer.blender.org/rB3df2bea88be49d396894bf7495b573c0683ad219

Fix UI messages.

Avoid sticking words together when it's not absolutely necessary.

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

M	source/blender/editors/armature/pose_group.c
M	source/blender/makesrna/intern/rna_pose.c

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

diff --git a/source/blender/editors/armature/pose_group.c b/source/blender/editors/armature/pose_group.c
index 6ef46a792c4..55c9877e55f 100644
--- a/source/blender/editors/armature/pose_group.c
+++ b/source/blender/editors/armature/pose_group.c
@@ -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;
   }
 
diff --git a/source/blender/makesrna/intern/rna_pose.c b/source/blender/makesrna/intern/rna_pose.c
index cd3e4a09fc3..996a1ebc5c7 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 bonegroups for proxies or library overrides");
+    BKE_report(reports, RPT_ERROR, "Cannot edit boneg roups for proxies or library overrides");
     return false;
   }



More information about the Bf-blender-cvs mailing list