From 756aa930b12bbb16e5ac75b7c9034e36ed61f730 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= <sybren@stuvel.eu> Date: Mon, 19 Jul 2021 15:52:36 +0200 Subject: [PATCH] Pose Library: add category to `DOPESHEET_PT_asset_panel` panel Add `bl_category` to the animation editor panel of the pose library. This doesn't change anything in the GUI, but it does avoid the warning that no category was set. No functional changes. --- pose_library/gui.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pose_library/gui.py b/pose_library/gui.py index cad1524e7..8c9c6819b 100644 --- a/pose_library/gui.py +++ b/pose_library/gui.py @@ -167,6 +167,7 @@ class DOPESHEET_PT_asset_panel(Panel): bl_space_type = "DOPESHEET_EDITOR" bl_region_type = "UI" bl_label = "Create Pose Asset" + bl_category = "Pose Library" @classmethod def poll(cls, context: Context) -> bool: -- GitLab