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:
authorRobert Guetzkow <rjg>2020-03-27 02:44:08 +0300
committerBrecht Van Lommel <brecht@blender.org>2020-03-27 02:44:18 +0300
commitfcd6fac0a75db66f8dc0f147d2a17feaac092d7b (patch)
treea00f18fb9269441c5cfb0dff2dbd033192e71abe /release
parent02518be634a63a1d7e5505d8dd94d9ed7565fdf4 (diff)
Fix T74996: material custom properties not displayed for Cycles
Differential Revision: https://developer.blender.org/D7223
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_material.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_material.py b/release/scripts/startup/bl_ui/properties_material.py
index 0849437b680..ab70c4c25c0 100644
--- a/release/scripts/startup/bl_ui/properties_material.py
+++ b/release/scripts/startup/bl_ui/properties_material.py
@@ -74,7 +74,7 @@ class MATERIAL_PT_preview(MaterialButtonsPanel, Panel):
class MATERIAL_PT_custom_props(MaterialButtonsPanel, PropertyPanel, Panel):
- COMPAT_ENGINES = {'BLENDER_EEVEE', 'BLENDER_WORKBENCH'}
+ COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_WORKBENCH'}
_context_path = "material"
_property_type = bpy.types.Material