Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-11-05 07:49:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-11-05 07:49:04 +0300
commit82efcfc1885d048c0ec7b5eea7c0a2c1df7940c5 (patch)
tree4ee6168069ea6c0958d0aaa0f77ef8d87a8ab592 /source/blender/python
parentc5ace142e651a4ea8635b39a717870c37ee9f696 (diff)
Correct assert checking gizmo type
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy_rna_gizmo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_rna_gizmo.c b/source/blender/python/intern/bpy_rna_gizmo.c
index adae68bd7b4..e4fb5b33e97 100644
--- a/source/blender/python/intern/bpy_rna_gizmo.c
+++ b/source/blender/python/intern/bpy_rna_gizmo.c
@@ -63,7 +63,7 @@ static int py_rna_gizmo_parse(PyObject *o, void *p)
{
/* No type checking (this is `self` not a user defined argument). */
BLI_assert(BPy_StructRNA_Check(o));
- BLI_assert(((const BPy_StructRNA *)o)->ptr.type == &RNA_Gizmo);
+ BLI_assert(RNA_struct_is_a(((const BPy_StructRNA *)o)->ptr.type, &RNA_Gizmo));
wmGizmo **gz_p = p;
*gz_p = ((const BPy_StructRNA *)o)->ptr.data;