From abaf93f3e9af92576d7d5aea96dc8173ee694e56 Mon Sep 17 00:00:00 2001 From: Roberto Saccon Date: Mon, 4 Dec 2023 00:20:27 +0100 Subject: [PATCH] commented out the non-working subtype option --- api/tree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/tree.py b/api/tree.py index 4d0edd8..cad1c4c 100644 --- a/api/tree.py +++ b/api/tree.py @@ -125,7 +125,7 @@ def tree(name): input_options.process(node_input.type) node_input.min_value = input_options.min_value node_input.max_value = input_options.max_value - node_input.bl_subtype_label = input_options.bl_subtype_label # DOES NOT WORK. Do e nee to change a UI property like this: ui_property(object, "property-name", expand=False, text="New Label") + # node_input.bl_subtype_label = input_options.bl_subtype_label # DOES NOT WORK. Do e nee to change a UI property like this: ui_property(object, "property-name", expand=False, text="New Label") node_input.description = input_options.description node_input.hide_in_modifier = input_options.hide_in_modifier else: