buttons editing didnt let lib-obdata to changed once set (thanks for the report broken)

NMesh (error in last commit).
This commit is contained in:
2007-06-01 02:48:36 +00:00
parent f19b56a541
commit 3d6f9b804f
2 changed files with 3 additions and 3 deletions

View File

@@ -1303,7 +1303,7 @@ static PyObject *NMesh_getSelectedFaces( PyObject * self, PyObject * args )
totfaces= me->totface;
if( flag ) {
for( i = 0; i < me->totface; i++ ) {
for( i = 0; i < totfaces; i++ ) {
if( mf[i].flag & ME_FACE_SEL ) {
pyval = PyInt_FromLong( i );
PyList_Append( l, pyval );
@@ -1311,7 +1311,7 @@ static PyObject *NMesh_getSelectedFaces( PyObject * self, PyObject * args )
}
}
} else {
for( i = 0; i < me->totface; i++ ) {
for( i = 0; i < totfaces; i++ ) {
if( mf[i].flag & ME_FACE_SEL )
PyList_Append( l, PyList_GetItem( nm->faces, i ) );
}