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:
authorBrecht Van Lommel <brecht@blender.org>2022-03-14 16:21:10 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-03-15 18:12:13 +0300
commit2613a2552dec7d236032f2b4a1dd367be9214df5 (patch)
tree200408bd5df746c3693f0ca3b212daf179fb44cc /release/scripts/startup/bl_ui/space_node.py
parent3bb4597b2d23d5d3afd342c432b5cac23e2ba755 (diff)
Fix some properties missing in the UI for new Curves object type
Missed some renames from HAIR to CURVES.
Diffstat (limited to 'release/scripts/startup/bl_ui/space_node.py')
-rw-r--r--release/scripts/startup/bl_ui/space_node.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_node.py b/release/scripts/startup/bl_ui/space_node.py
index 7c88006a4d6..d7d905cb820 100644
--- a/release/scripts/startup/bl_ui/space_node.py
+++ b/release/scripts/startup/bl_ui/space_node.py
@@ -61,7 +61,7 @@ class NODE_HT_header(Header):
layout.separator_spacer()
types_that_support_material = {'MESH', 'CURVE', 'SURFACE', 'FONT', 'META',
- 'GPENCIL', 'VOLUME', 'HAIR', 'POINTCLOUD'}
+ 'GPENCIL', 'VOLUME', 'CURVES', 'POINTCLOUD'}
# disable material slot buttons when pinned, cannot find correct slot within id_from (T36589)
# disable also when the selected object does not support materials
has_material_slots = not snode.pin and ob_type in types_that_support_material