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:
authorAntonio Vazquez <blendergit@gmail.com>2022-09-28 17:10:39 +0300
committerAntonio Vazquez <blendergit@gmail.com>2022-09-28 17:10:54 +0300
commit3f55121a185ab7259b319be98fcbb787f4ab842b (patch)
tree6062451a86e4bded0084d2d6763d0d33068a7ae4
parentbb4e09ddc565b96684e280323cf4afcc2d39986f (diff)
GPencil: Fix compiler warning
-rw-r--r--source/blender/editors/gpencil/gpencil_fill.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/gpencil/gpencil_fill.c b/source/blender/editors/gpencil/gpencil_fill.c
index ba187080bab..b99274d66e5 100644
--- a/source/blender/editors/gpencil/gpencil_fill.c
+++ b/source/blender/editors/gpencil/gpencil_fill.c
@@ -887,7 +887,7 @@ static bool gpencil_stroke_is_drawable(tGPDfill *tgpf, bGPDstroke *gps)
const bool is_collide = (gps->flag & GP_STROKE_COLLIDE) != 0;
if (is_line_mode && only_collide && tgpf->is_render && !is_collide) {
- return;
+ return false;
}
if ((!show_help) && (show_extend)) {