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-14 18:39:06 +0300
committerAntonio Vazquez <blendergit@gmail.com>2022-02-14 18:39:06 +0300
commitd8e2f612ec52ce0272cbc8a5e9ff0c6b89ce16a6 (patch)
tree8896938925c1fd19e62ac1a4ee6ef3c72741c3a2 /source
parent3b14224881958297d88b70050ddae93d19c3f244 (diff)
Cleaunp: Modify comment
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 8095cc479bc..8be34a35ca9 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 pixels and expand into red areas */
+ /* Detect if pixel is near of no green pixels and mark green to be cleared. */
for (int row = 0; row < ibuf->y; row++) {
if (!is_row_filled(ibuf, row)) {
continue;