From 0b77aec7803bcd1ed09c09acfed5b0699f6b0ef4 Mon Sep 17 00:00:00 2001 From: Habib Gahbiche Date: Wed, 6 Aug 2025 17:15:23 +0200 Subject: [PATCH] Compositor: remove preview for File Output node Output nodes typically don't have a preview (see also ed13dad0). Also, it is not clear what should be shown as a preview, especially when the file output node can have an arbitrary number of inputs of different types. This commit removes the preview for the File Output node. Pull Request: https://projects.blender.org/blender/blender/pulls/144029 --- .../blender/nodes/composite/nodes/node_composite_file_output.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/source/blender/nodes/composite/nodes/node_composite_file_output.cc b/source/blender/nodes/composite/nodes/node_composite_file_output.cc index cde891373c0..bbb09a98d38 100644 --- a/source/blender/nodes/composite/nodes/node_composite_file_output.cc +++ b/source/blender/nodes/composite/nodes/node_composite_file_output.cc @@ -1059,7 +1059,6 @@ static void register_node_type_cmp_output_file() ntype.draw_buttons = file_ns::node_composit_buts_file_output; ntype.draw_buttons_ex = file_ns::node_composit_buts_file_output_ex; ntype.initfunc_api = file_ns::init_output_file; - ntype.flag |= NODE_PREVIEW; blender::bke::node_type_storage( ntype, "NodeImageMultiFile", file_ns::free_output_file, file_ns::copy_output_file); ntype.updatefunc = file_ns::update_output_file;