Correct tooltip text

This commit is contained in:
2025-01-02 23:21:28 -06:00
parent 5f0a4c93c2
commit cb3999de33
2 changed files with 4 additions and 3 deletions

View File

@ -34,9 +34,10 @@ The former Pose Library was deprecated and gutted rapidly during Blender 3.x, le
- `Shift + L` - Add/Replace Pose - `Shift + L` - Add/Replace Pose
- `Alt + L` - Browse Poses with Arrow Keys - `Alt + L` - Browse Poses with Arrow Keys
### Menu Controls ### Menu Controls
- `Single click` - Apply Pose - `Single click` - Apply Pose
- `Shift + Click` - Rename Pose - `Shift + Click` - Rename Pose
- `Ctrl + Click` - Remove Pose - `Alt + Click` - Remove Pose
- `Ctrl + Click ` - Select Pose
- Choose `Edit` for fast Move/Rename/Removal - Choose `Edit` for fast Move/Rename/Removal
## Considerations ## Considerations

View File

@ -254,7 +254,7 @@ class DSPL_OT_MovePose(bpy.types.Operator):
class DSPL_OT_ApplyPose(bpy.types.Operator): class DSPL_OT_ApplyPose(bpy.types.Operator):
bl_idname = "dspl.apply_pose" bl_idname = "dspl.apply_pose"
bl_label = "Apply Pose" bl_label = "Apply Pose"
bl_description = "Apply Pose (Ctrl+Click to select, Alt+Click to remove)" bl_description = "Apply Pose (Ctrl+Click to select, Shift+Click to rename, Alt+Click to remove)"
bl_options = {'REGISTER', 'UNDO'} bl_options = {'REGISTER', 'UNDO'}
posename: bpy.props.StringProperty() posename: bpy.props.StringProperty()