From 4c0408bbe6ceff5e45a8a10e827faaf89b52b7b1 Mon Sep 17 00:00:00 2001 From: Habib Gahbiche Date: Mon, 6 Oct 2025 16:00:00 +0200 Subject: [PATCH] Compositor: Make asset shelf visible by default Now that we have assets bundled with Blender, the asset shelf can be visible by default. See also: #138983 Pull Request: https://projects.blender.org/blender/blender/pulls/147453 --- scripts/startup/bl_ui/space_node.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/startup/bl_ui/space_node.py b/scripts/startup/bl_ui/space_node.py index 95b48f86b49..2f505906b15 100644 --- a/scripts/startup/bl_ui/space_node.py +++ b/scripts/startup/bl_ui/space_node.py @@ -1139,6 +1139,7 @@ def node_panel(cls): class NODE_AST_compositor(bpy.types.AssetShelf): bl_space_type = 'NODE_EDITOR' bl_region_type = 'UI' + bl_options = {'DEFAULT_VISIBLE'} @classmethod def poll(cls, context):