was missing a return of len, so scn.objects.context was always returning 0

This commit is contained in:
2006-10-25 13:33:08 +00:00
parent 9b7125fafc
commit 80ffbee6f7

View File

@@ -1144,6 +1144,7 @@ static int SceneObSeq_len( BPy_SceneObSeq * self )
len++;
}
}
return len;
}
/*should never run this */
return 0;