[Bf-blender-cvs] [5f5fd4c1433] blender2.8: UI: Fix error in camera property panel

Clément Foucault noreply at git.blender.org
Fri Jul 27 12:17:43 CEST 2018


Commit: 5f5fd4c14333cab84d67446f2f9b2fbbf2c49462
Author: Clément Foucault
Date:   Thu Jul 26 12:28:12 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB5f5fd4c14333cab84d67446f2f9b2fbbf2c49462

UI: Fix error in camera property panel

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

M	release/scripts/startup/bl_ui/properties_data_camera.py

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

diff --git a/release/scripts/startup/bl_ui/properties_data_camera.py b/release/scripts/startup/bl_ui/properties_data_camera.py
index 8ede329ea45..cc0bde46189 100644
--- a/release/scripts/startup/bl_ui/properties_data_camera.py
+++ b/release/scripts/startup/bl_ui/properties_data_camera.py
@@ -88,7 +88,7 @@ class DATA_PT_lens(CameraButtonsPanel, Panel):
             if cam.lens_unit == 'MILLIMETERS':
                 col.prop(cam, "lens")
             elif cam.lens_unit == 'FOV':
-                row.prop(cam, "angle")
+                col.prop(cam, "angle")
             col.prop(cam, "lens_unit")
 
         elif cam.type == 'ORTHO':



More information about the Bf-blender-cvs mailing list