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
path: root/intern
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-04-30 08:14:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-04-30 08:14:32 +0300
commit3be50c849a14a6030e171acbdb0ec6706dfa277e (patch)
tree4ba5bc469e7affe7ea8ba990cbf8e25e41ebdeee /intern
parent47aca2b4c402ec35ea52c18afcc0840bcf283b26 (diff)
parentf0eda573926fa3adc463db84433644f4be759a0c (diff)
Merge branch 'blender-v2.93-release'
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/blender/addon/ui.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/intern/cycles/blender/addon/ui.py b/intern/cycles/blender/addon/ui.py
index 0b7f548c792..9aea7725810 100644
--- a/intern/cycles/blender/addon/ui.py
+++ b/intern/cycles/blender/addon/ui.py
@@ -552,8 +552,9 @@ class CYCLES_RENDER_PT_light_paths_fast_gi(CyclesButtonsPanel, Panel):
if world:
light = world.light_settings
- sub.prop(light, "ao_factor", text="AO Factor")
- layout.prop(light, "distance", text="AO Distance")
+ col = layout.column(align=True)
+ col.prop(light, "ao_factor", text="AO Factor")
+ col.prop(light, "distance", text="AO Distance")
class CYCLES_RENDER_PT_motion_blur(CyclesButtonsPanel, Panel):