[Bf-blender-cvs] [b2aae49cf8d] blender2.8: Fix for camera background images options not showing when using stereoscopy.

Sebastian Koenig noreply at git.blender.org
Thu Dec 20 13:31:06 CET 2018


Commit: b2aae49cf8d31d6e6490daa372b860b7429a4b7b
Author: Sebastian Koenig
Date:   Thu Dec 20 11:27:51 2018 +0100
Branches: blender2.8
https://developer.blender.org/rBb2aae49cf8d31d6e6490daa372b860b7429a4b7b

Fix for camera background images options not showing when using stereoscopy.

Differential Revision: https://developer.blender.org/D4098

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

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 c09f9d8b4ee..6e919e645f8 100644
--- a/release/scripts/startup/bl_ui/properties_data_camera.py
+++ b/release/scripts/startup/bl_ui/properties_data_camera.py
@@ -313,7 +313,7 @@ class DATA_PT_camera_background_image(CameraButtonsPanel, Panel):
                         box.template_image(bg, "image", bg.image_user, compact=True)
                         has_bg = True
 
-                        if use_multiview and bg.view_axis in {'CAMERA', 'ALL'}:
+                        if use_multiview:
                             box.prop(bg.image, "use_multiview")
 
                             column = box.column()



More information about the Bf-blender-cvs mailing list