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:
authorCharlie Jolly <mistajolly@gmail.com>2019-04-18 13:39:13 +0300
committerCharlie Jolly <mistajolly@gmail.com>2019-04-18 13:39:13 +0300
commit96e10dc2a53769996606fc6f327c1602b3e88007 (patch)
treeecf0e63076049bbb789352a022c512dec88b83ef /source/blender/editors
parente5c5b990c6d306fd42cb536d9be9e2d1335a4f5e (diff)
Fix T63513: Gpencil - Circle guide activation with shortcut "C" is not working properly
Only add missing events after first point is added.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/gpencil/gpencil_paint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/gpencil/gpencil_paint.c b/source/blender/editors/gpencil/gpencil_paint.c
index aba01a6935f..3fc7ade7368 100644
--- a/source/blender/editors/gpencil/gpencil_paint.c
+++ b/source/blender/editors/gpencil/gpencil_paint.c
@@ -3661,7 +3661,7 @@ static int gpencil_draw_modal(bContext *C, wmOperator *op, const wmEvent *event)
/* handle drawing event */
/* printf("\t\tGP - add point\n"); */
- if (((p->flags & GP_PAINTFLAG_FIRSTRUN) == 0) || (guide->use_guide)) {
+ if (((p->flags & GP_PAINTFLAG_FIRSTRUN) == 0)) {
gpencil_add_missing_events(C, op, event, p);
}