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:
authorCampbell Barton <ideasman42@gmail.com>2015-08-05 14:02:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-08-05 14:26:10 +0300
commitcae25ff2404cf197b3bf0ca2271880d18dfa4660 (patch)
tree2ba310c4bae90eac24de82f25649ca87f97ab0b7 /source/blender/makesrna
parentd4a9da28e8b7bc6e2952faa3bdfec314ff4cbb97 (diff)
Fix T45647: Incorrect results w/ color spill node
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 105829ef389..eca9cb4b4da 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -4957,9 +4957,9 @@ static void def_cmp_color_spill(StructRNA *srna)
};
static EnumPropertyItem limit_channel_items[] = {
- {1, "R", 0, "R", "Limit by Red"},
- {2, "G", 0, "G", "Limit by Green"},
- {3, "B", 0, "B", "Limit by Blue"},
+ {0, "R", 0, "R", "Limit by Red"},
+ {1, "G", 0, "G", "Limit by Green"},
+ {2, "B", 0, "B", "Limit by Blue"},
{0, NULL, 0, NULL, NULL}
};