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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-09-29 00:32:51 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-09-29 16:04:10 +0300
commitc31a849a1474ef1d96805b67ad12c9be2173e003 (patch)
treecb93ca48d866bde34755ed282dfaf7bf9caefb2d /source/blender/editors/sculpt_paint/paint_image.c
parentba90d2efa58fe23a87f98e014bcc02ea951a6a49 (diff)
Fix wrong sculpt cursor drawing when using "ignore_background_click"
Not all the necessary state got restored.
Diffstat (limited to 'source/blender/editors/sculpt_paint/paint_image.c')
-rw-r--r--source/blender/editors/sculpt_paint/paint_image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_image.c b/source/blender/editors/sculpt_paint/paint_image.c
index e066e101410..54531139616 100644
--- a/source/blender/editors/sculpt_paint/paint_image.c
+++ b/source/blender/editors/sculpt_paint/paint_image.c
@@ -700,7 +700,7 @@ static int paint_invoke(bContext *C, wmOperator *op, const wmEvent *event)
event->type);
if ((retval = op->type->modal(C, op, event)) == OPERATOR_FINISHED) {
- paint_stroke_data_free(op);
+ paint_stroke_free(C, op);
return OPERATOR_FINISHED;
}
/* add modal handler */