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>2010-08-20 06:08:43 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-20 06:08:43 +0400
commit097a6ca926b48f40547f2e11a413f9f86db01a2e (patch)
treec24fb48ef38dd1702ddcfd56b844156ccbfd88d3 /release/scripts/ui/properties_material.py
parentbea1c4fb132a275dd04b59b40cc5881ca4b9f6e6 (diff)
rna remaining that negates values
Diffstat (limited to 'release/scripts/ui/properties_material.py')
-rw-r--r--release/scripts/ui/properties_material.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/ui/properties_material.py b/release/scripts/ui/properties_material.py
index 4c3e68686f6..2ecaeff7c90 100644
--- a/release/scripts/ui/properties_material.py
+++ b/release/scripts/ui/properties_material.py
@@ -648,7 +648,7 @@ class MATERIAL_PT_options(MaterialButtonsPanel, bpy.types.Panel):
col.prop(mat, "traceable")
col.prop(mat, "full_oversampling")
col.prop(mat, "use_sky")
- col.prop(mat, "exclude_mist")
+ col.prop(mat, "use_mist")
col.prop(mat, "invert_z")
sub = col.row()
sub.prop(mat, "z_offset")
@@ -883,7 +883,7 @@ class MATERIAL_PT_volume_options(VolumeButtonsPanel, bpy.types.Panel):
col = split.column()
col.prop(mat, "traceable")
col.prop(mat, "full_oversampling")
- col.prop(mat, "exclude_mist")
+ col.prop(mat, "use_mist")
col = split.column()
col.label(text="Light Group:")