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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-06-27 10:16:08 +0300
committerCampbell Barton <campbell@blender.org>2022-06-27 10:25:07 +0300
commit1cf05f17eb827c2e17b4d40420f745e7a62a34ea (patch)
tree8aa0fd428d322817d00628d173406a3ae54e75d8 /release/scripts
parent10a2c50733169f1f5dcf23d43eb49c1e4bf4446e (diff)
UI: define category for the dope-sheet properties panel
Caused warning on startup, missing from [0]. [0]: 57816a6435c3a6efc98c575ec0a02ad0dd07622c
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/startup/bl_ui/space_dopesheet.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_dopesheet.py b/release/scripts/startup/bl_ui/space_dopesheet.py
index d4b55d5e536..a1c086db745 100644
--- a/release/scripts/startup/bl_ui/space_dopesheet.py
+++ b/release/scripts/startup/bl_ui/space_dopesheet.py
@@ -548,6 +548,7 @@ class DopesheetActionPanelBase:
class DOPESHEET_PT_custom_props_action(PropertyPanel, Panel):
bl_space_type = 'DOPESHEET_EDITOR'
+ bl_category = "Item"
bl_region_type = 'UI'
bl_context = 'data'
_context_path = "active_object.animation_data.action"