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:
Diffstat (limited to 'source/blender/editors/gpencil/gpencil_fill.c')
-rw-r--r--source/blender/editors/gpencil/gpencil_fill.c16
1 files changed, 6 insertions, 10 deletions
diff --git a/source/blender/editors/gpencil/gpencil_fill.c b/source/blender/editors/gpencil/gpencil_fill.c
index 35bd44b88f9..8c901da100d 100644
--- a/source/blender/editors/gpencil/gpencil_fill.c
+++ b/source/blender/editors/gpencil/gpencil_fill.c
@@ -1199,15 +1199,12 @@ static bool gpencil_fill_poll(bContext *C)
return true;
}
- else {
- CTX_wm_operator_poll_msg_set(C, "Active region not valid for filling operator");
- return false;
- }
- }
- else {
- CTX_wm_operator_poll_msg_set(C, "Active region not set");
+ CTX_wm_operator_poll_msg_set(C, "Active region not valid for filling operator");
return false;
}
+
+ CTX_wm_operator_poll_msg_set(C, "Active region not set");
+ return false;
}
/* Allocate memory and initialize values */
@@ -1388,9 +1385,8 @@ static int gpencil_fill_invoke(bContext *C, wmOperator *op, const wmEvent *UNUSE
}
return OPERATOR_CANCELLED;
}
- else {
- tgpf = op->customdata;
- }
+
+ tgpf = op->customdata;
/* Enable custom drawing handlers to show help lines */
if (tgpf->flag & GP_BRUSH_FILL_SHOW_HELPLINES) {