Fix, python changes to array properties were not yet calling update

and notifiers like other properties.
This commit is contained in:
2010-04-06 09:11:33 +00:00
parent 86b38129c6
commit 40273931a6

View File

@@ -1077,6 +1077,9 @@ static int pyrna_py_to_prop_index(BPy_PropertyRNA *self, int index, PyObject *va
break;
}
}
/* Run rna property functions */
RNA_property_update(BPy_GetContext(), ptr, prop);
return ret;
}