[Bf-blender-cvs] [93426cb295c] master: Fix T51068: Place props in their own row

Aaron Carlisle noreply at git.blender.org
Tue Mar 28 22:40:45 CEST 2017


Commit: 93426cb295c53f1af01451c6f6fad29afe05bb5e
Author: Aaron Carlisle
Date:   Tue Mar 28 16:29:20 2017 -0400
Branches: master
https://developer.blender.org/rB93426cb295c53f1af01451c6f6fad29afe05bb5e

Fix T51068: Place props in their own row

This allows the props to extend into the blank space that is to the right.

===================================================================

M	intern/cycles/blender/addon/ui.py

===================================================================

diff --git a/intern/cycles/blender/addon/ui.py b/intern/cycles/blender/addon/ui.py
index bb45e75536c..6e25e44a5c2 100644
--- a/intern/cycles/blender/addon/ui.py
+++ b/intern/cycles/blender/addon/ui.py
@@ -183,11 +183,6 @@ class CyclesRender_PT_sampling(CyclesButtonsPanel, Panel):
         else:
             sub.label(text="AA Samples:")
             sub.prop(cscene, "aa_samples", text="Render")
-            sub.prop(cscene, "preview_aa_samples", text="Preview")
-            sub.separator()
-            sub.prop(cscene, "sample_all_lights_direct")
-            sub.prop(cscene, "sample_all_lights_indirect")
-
             col = split.column()
             sub = col.column(align=True)
             sub.label(text="Samples:")
@@ -203,6 +198,10 @@ class CyclesRender_PT_sampling(CyclesButtonsPanel, Panel):
             sub.prop(cscene, "subsurface_samples", text="Subsurface")
             sub.prop(cscene, "volume_samples", text="Volume")
 
+            col = layout.column(align=True)
+            col.prop(cscene, "sample_all_lights_direct")
+            col.prop(cscene, "sample_all_lights_indirect")
+
         if not (use_opencl(context) and cscene.feature_set != 'EXPERIMENTAL'):
             layout.row().prop(cscene, "sampling_pattern", text="Pattern")




More information about the Bf-blender-cvs mailing list