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:
authorDalai Felinto <dalai@blender.org>2020-11-06 14:27:56 +0300
committerDalai Felinto <dalai@blender.org>2020-11-06 14:29:19 +0300
commitb35e3f24600e9a4b0af0b44e06cb7d0218eaa6ac (patch)
tree7849ea4c5d51e6cafd6d27311e99bb1f8f352792 /source/blender/python
parente6739ed91d5c4f34f6fbac88734ee1ba71bc6b6f (diff)
Fix T82457: Python error when clicking on a tool in the viewport
Ths variable was initialized for false, while it was expected to be true.
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy_rna.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c
index cd0ec44e2ad..53c89f64bc1 100644
--- a/source/blender/python/intern/bpy_rna.c
+++ b/source/blender/python/intern/bpy_rna.c
@@ -3621,7 +3621,7 @@ static PyObject *pyrna_struct_is_property_set(BPy_StructRNA *self, PyObject *arg
{
PropertyRNA *prop;
const char *name;
- bool use_ghost = false;
+ bool use_ghost = true;
PYRNA_STRUCT_CHECK_OBJ(self);