Fix T45647: Incorrect results w/ color spill node

This commit is contained in:
Campbell Barton 2015-08-05 21:02:29 +10:00
parent d4a9da28e8
commit cae25ff240
Notes: blender-bot 2023-02-14 08:48:44 +01:00
Referenced by issue #45647, Color spill bug
1 changed files with 3 additions and 3 deletions

View File

@ -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}
};