Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-09-25 12:02:05 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-09-25 12:02:05 +0400
commit3cf59bce789ecdb74a8806f73f88f14e0db1114d (patch)
treee3891dfc9036ddf0b65fedbf01565921711952c5 /source/blender/editors/space_node/drawnode.c
parentf45f229af2e06a34ae049f3cf7ae4dba81201f38 (diff)
No need to show display settings in file output node
Diffstat (limited to 'source/blender/editors/space_node/drawnode.c')
-rw-r--r--source/blender/editors/space_node/drawnode.c4
1 files 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);
}
}
}