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>2019-08-12 20:45:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-08-12 20:45:29 +0300
commitef5bf8d67e7ed6909d53d1bda3696e2233fcd014 (patch)
treeca06a853d15327b1ebcbfa63790270aaae8f3afc /source/blender/makesrna
parentb5f5f6e319b21be4c5855906afdcc5c6093ab71d (diff)
Fix T68557: Incorrect property reported in error
Error spotted by @gbayliss
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_wm_gizmo_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_wm_gizmo_api.c b/source/blender/makesrna/intern/rna_wm_gizmo_api.c
index f7335572a14..bc6c2e8a796 100644
--- a/source/blender/makesrna/intern/rna_wm_gizmo_api.c
+++ b/source/blender/makesrna/intern/rna_wm_gizmo_api.c
@@ -90,7 +90,7 @@ static void rna_gizmo_target_set_prop(wmGizmo *gz,
RPT_ERROR,
"Property '%s.%s' not found",
RNA_struct_identifier(ptr->type),
- target_propname);
+ propname);
return;
}