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:
authorPablo Dobarro <pablodp606@gmail.com>2020-09-19 18:33:09 +0300
committerPablo Dobarro <pablodp606@gmail.com>2020-09-19 19:07:49 +0300
commitc9c51c07cfb77a96e720b28d01e91c3fecb0aa6d (patch)
tree4f64b08ee8ab26ff9e733f428780222770e13a4e /release/scripts/startup
parentd989ae84a8cfead6da8ef90c80c281402e4f6f01 (diff)
Fix light rotation slider in Lookdev popover being disabled
Light rotation is supported both in world and view light orientation in lookdev, so no reason to disable it. Reviewed By: Blendify Differential Revision: https://developer.blender.org/D8958
Diffstat (limited to 'release/scripts/startup')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 40f03c88743..3de9efd1250 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -5704,7 +5704,6 @@ class VIEW3D_PT_shading_lighting(Panel):
row = col.row()
row.prop(shading, "use_studiolight_view_rotation", text="", icon='WORLD', toggle=True)
row = row.row()
- row.active = shading.use_world_space_lighting
row.prop(shading, "studiolight_rotate_z", text="Rotation")
col.prop(shading, "studiolight_intensity")