From 8ee458651039d6e2698ccca06d8e67dad355ab03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Thu, 15 Jul 2021 11:47:10 +0200 Subject: Pose library: show message when "Copy Pose As Asset" is pressed Show a message in the UI when "Copy Pose As Asset" was successful, to explain where the corresponding "paste" button can be found. Since the "copy" is asset-type specific, this one is located in the animation editor. However, the "paste" button is generic for any asset type, and thus it is located in the asset browser itself. --- pose_library/operators.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pose_library/operators.py b/pose_library/operators.py index 2dc46470..f06241d7 100644 --- a/pose_library/operators.py +++ b/pose_library/operators.py @@ -229,6 +229,7 @@ class POSELIB_OT_copy_as_asset(PoseAssetCreator, Operator): ) asset_browser.tag_redraw(context.screen) + self.report({"INFO"}, "Pose Asset copied, use Paste As New Asset in any Asset Browser to paste") return {"FINISHED"} def save_datablock(self, action: Action) -> Path: -- cgit v1.2.3