Merge branch 'blender-v3.4-release'

This commit is contained in:
Campbell Barton
2022-11-08 12:18:52 +11:00
15 changed files with 50 additions and 49 deletions

View File

@@ -74,7 +74,7 @@ static Py_ssize_t Stroke_sq_length(BPy_Stroke *self)
return self->s->strokeVerticesSize();
}
static PyObject *Stroke_sq_item(BPy_Stroke *self, int keynum)
static PyObject *Stroke_sq_item(BPy_Stroke *self, Py_ssize_t keynum)
{
if (keynum < 0) {
keynum += Stroke_sq_length(self);