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
path: root/source
diff options
context:
space:
mode:
authorAntonio Vazquez <blendergit@gmail.com>2022-02-25 13:22:17 +0300
committerAntonio Vazquez <blendergit@gmail.com>2022-02-25 13:22:17 +0300
commit8f1ee85ff4a73bae2dffaab740d285a2195d83d4 (patch)
tree158b053f364170284566da7a9dde0f6f2e87b1a6 /source
parentad0b3abf539bbb358f799d3f36649b5d46f222c8 (diff)
parent5186a28dec79a3722a516314cede5fcdd1c07376 (diff)
Merge branch 'blender-v3.1-release'
Diffstat (limited to 'source')
-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 32dc086099c..2ff12d2246c 100644
--- a/source/blender/editors/gpencil/gpencil_fill.c
+++ b/source/blender/editors/gpencil/gpencil_fill.c
@@ -1239,7 +1239,7 @@ static bool contract_shape(ImBuf *ibuf)
const float clear[4] = {0.0f, 0.0f, 0.0f, 0.0f};
const int max_size = (ibuf->x * ibuf->y) - 1;
- /* Detect if pixel is near of no green pixels and mark green to be cleared. */
+ /* detect pixels and expand into red areas */
for (int row = 0; row < ibuf->y; row++) {
if (!is_row_filled(ibuf, row)) {
continue;