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

Differential Revision: https://developer.blender.org/D4098
This commit is contained in:
Sebastian Koenig 2018-12-20 11:27:51 +01:00 committed by Brecht Van Lommel
parent e79f401ffa
commit b2aae49cf8
1 changed files with 1 additions and 1 deletions

View File

@ -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()