Fix for missing 'field-of-view angle' property for a panoramic camera.

This commit is contained in:
Tamito Kajiyama 2014-03-10 19:42:10 +09:00
parent ce37400c0b
commit a7ab389d54
Notes: blender-bot 2023-02-14 11:01:33 +01:00
Referenced by issue #39090, Missing field-of-view 'angle' property in the UI when camera type is set to Panoramic
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ class DATA_PT_lens(CameraButtonsPanel, Panel):
row = col.row()
if cam.lens_unit == 'MILLIMETERS':
row.prop(cam, "lens")
elif cam.lens_unit == 'DEGREES':
elif cam.lens_unit == 'FOV':
row.prop(cam, "angle")
row.prop(cam, "lens_unit", text="")