From 3cf59bce789ecdb74a8806f73f88f14e0db1114d Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 25 Sep 2012 08:02:05 +0000 Subject: [PATCH] No need to show display settings in file output node --- source/blender/editors/space_node/drawnode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/editors/space_node/drawnode.c b/source/blender/editors/space_node/drawnode.c index 3bba02f4fc8..458b87106d9 100644 --- a/source/blender/editors/space_node/drawnode.c +++ b/source/blender/editors/space_node/drawnode.c @@ -2021,7 +2021,7 @@ static void node_composit_buts_file_output_details(uiLayout *layout, bContext *C int multilayer = (RNA_enum_get(&imfptr, "file_format") == R_IMF_IMTYPE_MULTILAYER); node_composit_buts_file_output(layout, C, ptr); - uiTemplateImageSettings(layout, &imfptr, TRUE); + uiTemplateImageSettings(layout, &imfptr, FALSE); uiItemS(layout); @@ -2080,7 +2080,7 @@ static void node_composit_buts_file_output_details(uiLayout *layout, bContext *C col = uiLayoutColumn(layout, FALSE); uiLayoutSetActive(col, RNA_boolean_get(&active_input_ptr, "use_node_format") == FALSE); - uiTemplateImageSettings(col, &imfptr, TRUE); + uiTemplateImageSettings(col, &imfptr, FALSE); } } }