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:
authorColin Basnett <cmbasnett>2022-06-23 12:21:43 +0300
committerSybren A. Stüvel <sybren@blender.org>2022-06-23 12:37:23 +0300
commit2ae4397ec9905a0055ad80675ade2696137a7ca2 (patch)
treeb7086035b87feebbcd34b41c0fef217c7f7aa769 /source/blender/editors/armature
parent57816a6435c3a6efc98c575ec0a02ad0dd07622c (diff)
Armature: Add poll message explaining bone groups need pose mode
Add a poll message to the bone group operators, to explain they only work in pose mode. Before, the buttons would be greyed out with no explanation. Reviewed By: sybren Differential Revision: https://developer.blender.org/D15119
Diffstat (limited to 'source/blender/editors/armature')
-rw-r--r--source/blender/editors/armature/pose_group.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/armature/pose_group.c b/source/blender/editors/armature/pose_group.c
index d0f0bd55eea..1b78d3cc77e 100644
--- a/source/blender/editors/armature/pose_group.c
+++ b/source/blender/editors/armature/pose_group.c
@@ -42,6 +42,7 @@
static bool pose_group_poll(bContext *C)
{
if (!ED_operator_posemode_context(C)) {
+ CTX_wm_operator_poll_msg_set(C, "Bone groups can only be edited in pose mode");
return false;
}