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 10:51:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-26 10:51:21 +0300
commit3e3f6754b4ec828b5d970766bc336fcad2990e64 (patch)
tree99f05704218c80b73a635050a21834a18cdd09cb /release
parent33e45658ebc2a79acda259f7be748ad64780e982 (diff)
Cleanup: rename RNA property to match UI
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index e13edccc566..ff0ae8a20d5 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -3530,13 +3530,13 @@ class VIEW3D_PT_shading(Panel):
col.separator()
row = col.row()
- row.prop(shading, "show_see_through")
+ row.prop(shading, "show_xray")
row = col.row()
- row.active = not shading.show_see_through
+ row.active = not shading.show_xray
row.prop(shading, "show_shadows")
sub = row.row()
- sub.active = shading.show_shadows and not shading.show_see_through
+ sub.active = shading.show_shadows and not shading.show_xray
sub.prop(shading, "shadow_intensity", text="")
row = col.row()