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 12:55:44 +0300
committerBastien Montagne <bastien@blender.org>2021-01-25 12:56:36 +0300
commit3df2bea88be49d396894bf7495b573c0683ad219 (patch)
tree8caf304f808e6684df196f49a76ea93074e0ce07 /source/blender/editors/armature
parent52022cba788e6f9002428594bcb820d50664e5df (diff)
Fix UI messages.
Avoid sticking words together when it's not absolutely necessary.
Diffstat (limited to 'source/blender/editors/armature')
-rw-r--r--source/blender/editors/armature/pose_group.c2
1 files changed, 1 insertions, 1 deletions
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;
}