From 2b99e744f329a5bd3d3efd9fdf891e5f6d0d221d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= <sybren@blender.org> Date: Thu, 18 Nov 2021 17:47:20 +0100 Subject: [PATCH] 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. --- pose_library/gui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pose_library/gui.py b/pose_library/gui.py index 397f24bde..e648de15a 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) -- GitLab