fix except list
parent
47774a46e3
commit
e7621be9a8
|
@ -97,7 +97,7 @@ class GPEXP_OT_set_output_node_format(bpy.types.Operator):
|
|||
continue
|
||||
|
||||
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
|
||||
try:
|
||||
setattr(n.format, attr, getattr(ref.format, attr))
|
||||
|
|
Loading…
Reference in New Issue