From e7621be9a8d36853042938240f9a70732cec24be Mon Sep 17 00:00:00 2001 From: Pullusb Date: Thu, 23 Sep 2021 15:18:06 +0200 Subject: [PATCH] fix except list --- OP_manage_outputs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OP_manage_outputs.py b/OP_manage_outputs.py index f69e033..6cc80c5 100644 --- a/OP_manage_outputs.py +++ b/OP_manage_outputs.py @@ -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))