Merge branch 'blender-v3.3-release'

This commit is contained in:
Campbell Barton 2022-08-24 10:20:52 +10:00
commit be81690b73
Notes: blender-bot 2023-02-14 08:08:56 +01:00
Referenced by issue #100742, Noise OpenVDB baked with Mantaflow is not visible by Cycles and EEVEE
1 changed files with 1 additions and 1 deletions

View File

@ -2250,7 +2250,7 @@ static PyObject *pyrna_prop_collection_subscript_int(BPy_PropertyRNA *self, Py_s
}
else {
/* No callback defined, just iterate and find the nth item. */
const int key = (int)keynum;
const int key = (int)keynum_abs;
PyObject *result = NULL;
bool found = false;
CollectionPropertyIterator iter;