Skip to content
Snippets Groups Projects
Commit 2b99e744 authored by Sybren A. Stüvel's avatar Sybren A. Stüvel
Browse files

Pose Library: rename apply/blend buttons in the asset browser

Shorten "Apply Pose Asset" to just "Apply", and change "Blend Pose
Asset" to "Interactive Blend" to emphasise it's a modal operator.
parent d1265dc6
No related branches found
No related tags found
No related merge requests found
......@@ -146,9 +146,9 @@ class ASSETBROWSER_PT_pose_library_usage(PoseLibraryPanel, asset_utils.AssetBrow
col = layout.column(align=True)
col.prop(wm, "poselib_flipped")
props = col.operator("poselib.apply_pose_asset")
props = col.operator("poselib.apply_pose_asset", text="Apply")
props.flipped = wm.poselib_flipped
props = col.operator("poselib.blend_pose_asset")
props = col.operator("poselib.blend_pose_asset", text="Interactive Blend")
props.flipped = wm.poselib_flipped
row = col.row(align=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment