Correct own error simplifying matrix checks
This commit is contained in:
@@ -205,7 +205,7 @@ static int bpy_slot_from_py(
|
||||
if (!Matrix_ParseAny(value, &pymat)) {
|
||||
return -1;
|
||||
}
|
||||
if ((size = (pymat->num_col) != pymat->num_row) || (!ELEM(size, 3, 4))) {
|
||||
if (((size = pymat->num_col) != pymat->num_row) || (!ELEM(size, 3, 4))) {
|
||||
PyErr_Format(PyExc_TypeError,
|
||||
"%.200s: keyword \"%.200s\" expected a 3x3 or 4x4 matrix Matrix",
|
||||
opname, slot_name);
|
||||
|
Reference in New Issue
Block a user