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-19 17:31:00 +0300
committerAntonio Vazquez <blendergit@gmail.com>2022-09-19 17:31:00 +0300
commit0e6a8df6df28fc785ad25aef91a4599865d156f0 (patch)
tree5b9755584e6811b4fe688df2fbc3422a5976ff87
parent5c13c7cd30d14ef5199f080fb8194f8c3e9da393 (diff)
GPencil: Make format
Missing in previous commit
-rw-r--r--source/blender/editors/gpencil/gpencil_fill.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/editors/gpencil/gpencil_fill.c b/source/blender/editors/gpencil/gpencil_fill.c
index fa7863df725..34f983151d2 100644
--- a/source/blender/editors/gpencil/gpencil_fill.c
+++ b/source/blender/editors/gpencil/gpencil_fill.c
@@ -661,8 +661,7 @@ static void gpencil_draw_basic_stroke(tGPDfill *tgpf,
col[3] = (gps->flag & GP_STROKE_TAG) ? 0.0f : 0.5f;
}
else if ((is_extend) && (!tgpf->is_render)) {
- if ((gps->flag & GP_STROKE_COLLIDE) || (tgpf->fill_extend_mode == GP_FILL_EMODE_RADIUS))
- {
+ if ((gps->flag & GP_STROKE_COLLIDE) || (tgpf->fill_extend_mode == GP_FILL_EMODE_RADIUS)) {
copy_v4_v4(col, extend_col);
}
else {