From 4c64c34f499b7401f061141f1ece4fa987de1b8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 6 Oct 2023 11:46:52 +0200 Subject: [PATCH] Fix #110874: Anim: Theme confusion with 'Pose Bone' label Update the label of the "Bone Pose" theme setting to "Bone Pose Selected". That is now consistent with the already-existing "Bone Pose Active" label. Also add tooltips that clarify what these theme colors are used for. --- source/blender/makesrna/intern/rna_userdef.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/blender/makesrna/intern/rna_userdef.cc b/source/blender/makesrna/intern/rna_userdef.cc index 032449edca7..7fd2cdd1970 100644 --- a/source/blender/makesrna/intern/rna_userdef.cc +++ b/source/blender/makesrna/intern/rna_userdef.cc @@ -2520,17 +2520,17 @@ static void rna_def_userdef_theme_space_view3d(BlenderRNA *brna) prop = RNA_def_property(srna, "bone_pose", PROP_FLOAT, PROP_COLOR_GAMMA); RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "Bone Pose", ""); + RNA_def_property_ui_text(prop, "Bone Pose Selected", "Outline color of selected pose bones"); RNA_def_property_update(prop, 0, "rna_userdef_theme_update"); prop = RNA_def_property(srna, "bone_pose_active", PROP_FLOAT, PROP_COLOR_GAMMA); RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "Bone Pose Active", ""); + RNA_def_property_ui_text(prop, "Bone Pose Active", "Outline color of active pose bones"); RNA_def_property_update(prop, 0, "rna_userdef_theme_update"); prop = RNA_def_property(srna, "bone_solid", PROP_FLOAT, PROP_COLOR_GAMMA); RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "Bone Solid", ""); + RNA_def_property_ui_text(prop, "Bone Solid", "Default color of the solid shapes of bones"); RNA_def_property_update(prop, 0, "rna_userdef_theme_update"); prop = RNA_def_property(srna, "bone_locked_weight", PROP_FLOAT, PROP_COLOR_GAMMA);