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:
authorCampbell Barton <ideasman42@gmail.com>2018-05-26 12:54:25 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-26 12:54:25 +0300
commit0d559a67304d25a5c39937528cbc3c3dd51b6396 (patch)
tree442f35621e2100ecfb20f0d4dd6de71e26a9ff1f /release/scripts/startup/bl_ui/properties_material.py
parent6ebcf98943ee4a65b7d05be822fa99f7876d5036 (diff)
RNA: follow boolean naming conventions
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_material.py')
-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 13c783ad024..9b70c8f22d4 100644
--- a/release/scripts/startup/bl_ui/properties_material.py
+++ b/release/scripts/startup/bl_ui/properties_material.py
@@ -204,7 +204,7 @@ class EEVEE_MATERIAL_PT_options(MaterialButtonsPanel, Panel):
row.prop(mat, "alpha_threshold")
if mat.blend_method not in {"OPAQUE", "CLIP", "HASHED"}:
- layout.prop(mat, "transparent_hide_backside")
+ layout.prop(mat, "show_transparent_backside")
layout.prop(mat, "use_screen_refraction")
layout.prop(mat, "refraction_depth")