From bc872e0c8e3e951aff6363acb4372b498a256d18 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 29 Mar 2021 16:27:18 +0200 Subject: Fix: Line Art panel in properties showing in the wrong order with add-ons It should set bl_order to show below panels registered by render engine add-ons like Cycles. --- release/scripts/startup/bl_ui/properties_collection.py | 1 + 1 file changed, 1 insertion(+) (limited to 'release/scripts/startup/bl_ui/properties_collection.py') diff --git a/release/scripts/startup/bl_ui/properties_collection.py b/release/scripts/startup/bl_ui/properties_collection.py index 186314f9591..c5c35121135 100644 --- a/release/scripts/startup/bl_ui/properties_collection.py +++ b/release/scripts/startup/bl_ui/properties_collection.py @@ -77,6 +77,7 @@ class COLLECTION_PT_instancing(CollectionButtonsPanel, Panel): class COLLECTION_PT_lineart_collection(CollectionButtonsPanel, Panel): bl_label = "Line Art" + bl_order = 10 def draw(self, context): layout = self.layout -- cgit v1.2.3