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 Vazquez <venomgfx@gmail.com>2018-07-13 21:11:57 +0300
committerPablo Vazquez <venomgfx@gmail.com>2018-07-13 21:12:06 +0300
commitbc12c6f542fcb6ba848d7e3e93e1639d9849cbfe (patch)
tree568ce0f510d0d1c5918683b115adab2136c7f05b
parentcca87ccc753a85b447872a259c9d3e3f07ec1c13 (diff)
UI: Align Lighting sub-panel of the Shading popover
This better aligns the matcap/hdri browser, rotation/background sliders and preferences/flip matcap button. The remaining sub-panels are not perfeclty aligned yet, once the sub-panels separation is more prominent (and they can be collapsed) we can align those. Thanks devtalk forum for feedback!
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py58
1 files changed, 38 insertions, 20 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 50914a15fba..f9b69b8de66 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -3757,38 +3757,56 @@ class VIEW3D_PT_shading_lighting(Panel):
view = context.space_data
shading = view.shading
+ col = layout.column()
+ split = col.split(0.9)
+
if shading.type == 'SOLID':
- layout.row().prop(shading, "light", expand=True)
+ split.row().prop(shading, "light", expand=True)
+ col = split.column()
+
+ split = layout.split(0.9)
+ col = split.column()
+ sub = col.row()
+ sub.scale_y = 0.6 # smaller matcap/hdri preview
+
if shading.light == 'STUDIO':
- row = layout.row()
- row.scale_y = 0.8
- row.template_icon_view(shading, "studio_light", show_labels=True, scale=3)
- sub = row.column()
- sub.operator('wm.studiolight_userpref_show', emboss=False, text="", icon='PREFERENCES')
+ sub.template_icon_view(shading, "studio_light", show_labels=True, scale=3)
+
if shading.selected_studio_light.orientation == 'WORLD':
- layout.row().prop(shading, "studiolight_rotate_z", text="Rotation")
+ col.prop(shading, "studiolight_rotate_z", text="Rotation")
+
+ col = split.column()
+ col.operator('wm.studiolight_userpref_show', emboss=False, text="", icon='PREFERENCES')
elif shading.light == 'MATCAP':
- row = layout.row()
- row.scale_y = 0.8
- row.template_icon_view(shading, "studio_light", show_labels=True, scale=3)
- sub = row.column()
- sub.operator('VIEW3D_OT_toggle_matcap_flip', emboss=False, text="", icon='ARROW_LEFTRIGHT')
- sub.operator('wm.studiolight_userpref_show', emboss=False, text="", icon='PREFERENCES')
+ sub.template_icon_view(shading, "studio_light", show_labels=True, scale=3)
+
+ col = split.column()
+ col.operator('wm.studiolight_userpref_show', emboss=False, text="", icon='PREFERENCES')
+ col.operator('VIEW3D_OT_toggle_matcap_flip', emboss=False, text="", icon='ARROW_LEFTRIGHT')
elif shading.type == 'MATERIAL':
- col = layout.column(align=True)
col.prop(shading, "use_scene_lights")
col.prop(shading, "use_scene_world")
if not shading.use_scene_world:
- row = layout.row()
- row.template_icon_view(shading, "studio_light", show_labels=True, scale=3)
- sub = row.column()
- sub.operator('wm.studiolight_userpref_show', emboss=False, text="", icon='PREFERENCES')
+ col = layout.column()
+ split = col.split(0.9)
+
+ col = split.column()
+ sub = col.row()
+ sub.scale_y = 0.6
+ sub.template_icon_view(shading, "studio_light", show_labels=True, scale=3)
+
+ col = split.column()
+ col.operator('wm.studiolight_userpref_show', emboss=False, text="", icon='PREFERENCES')
+
if shading.selected_studio_light.orientation == 'WORLD':
- layout.row().prop(shading, "studiolight_rotate_z", text="Rotation")
- layout.row().prop(shading, "studiolight_background_alpha")
+ split = layout.split(0.9)
+ col = split.column()
+ col.prop(shading, "studiolight_rotate_z", text="Rotation")
+ col.prop(shading, "studiolight_background_alpha")
+ col = split.column() # to align properly with above
class VIEW3D_PT_shading_color(Panel):