Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@blender.org>2021-11-18 19:47:20 +0300
committerSybren A. Stüvel <sybren@blender.org>2021-11-18 19:48:22 +0300
commit2b99e744f329a5bd3d3efd9fdf891e5f6d0d221d (patch)
tree7e239bd9ee27dabb23ccbfbea0f6ba59b2b1a94f
parentd1265dc6aa12177b62a72cea418f14d145bf2ba9 (diff)
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.
-rw-r--r--pose_library/gui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pose_library/gui.py b/pose_library/gui.py
index 397f24bd..e648de15 100644
--- a/pose_library/gui.py
+++ b/pose_library/gui.py
@@ -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)