fix except list

main
Pullusb 2021-09-23 15:18:06 +02:00
parent 47774a46e3
commit e7621be9a8
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ class GPEXP_OT_set_output_node_format(bpy.types.Operator):
continue continue
for attr in dir(ref.format): for attr in dir(ref.format):
if attr.startswith('__') or attr in {'rna_type','bl_rna', 'view_settings'}: # views_format if attr.startswith('__') or attr in {'rna_type','bl_rna', 'view_settings', 'display_settings','stereo_3d_format'}: # views_format
continue continue
try: try:
setattr(n.format, attr, getattr(ref.format, attr)) setattr(n.format, attr, getattr(ref.format, attr))