Enum property items were missing a terminator item.

This commit is contained in:
Lukas Toenne
2012-05-03 06:57:30 +00:00
parent aecddee333
commit d3a5fd5508

View File

@@ -3713,7 +3713,8 @@ void NODE_OT_output_file_move_active_socket(wmOperatorType *ot)
{ {
static EnumPropertyItem direction_items[] = { static EnumPropertyItem direction_items[] = {
{1, "UP", 0, "Up", ""}, {1, "UP", 0, "Up", ""},
{2, "DOWN", 0, "Down", ""}}; {2, "DOWN", 0, "Down", ""},
{ 0, NULL, 0, NULL, NULL }};
/* identifiers */ /* identifiers */
ot->name = "Move File Node Socket"; ot->name = "Move File Node Socket";