UI: Tooltips for Bone Collection Active & Selected #120268

Open
Harley Acheson wants to merge 6 commits from Harley/blender:BoneCollectionActiveSelectedTip into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 03a6e583f7 - Show all commits

View File

@ -232,11 +232,11 @@ class BoneCollectionItem : public AbstractTreeViewItem {
const char *tip = nullptr;
if (ANIM_armature_bonecoll_contains_active_bone(&armature_, &bone_collection_)) {
icon = ICON_LAYER_ACTIVE;
tip = TIP_("Active");
tip = TIP_("Contains the active bone");
}
else if (has_any_selected_bones_) {
icon = ICON_LAYER_USED;
tip = TIP_("Selected");
tip = TIP_("Contains one or more selected bones");
}
else {
icon = ICON_BLANK1;