Fix #104022: Expand Mask inverted fill #111665

Merged
Sergey Sharybin merged 1 commits from pdosev/blender:expand-mask-inverted-fill into main 2023-08-30 09:29:07 +02:00
1 changed files with 6 additions and 0 deletions

View File

@ -233,6 +233,9 @@ static bool sculpt_expand_state_get(SculptSession *ss,
}
if (expand_cache->all_enabled) {
if (expand_cache->invert) {
return false;
}
return true;
}
@ -279,6 +282,9 @@ static bool sculpt_expand_face_state_get(SculptSession *ss, ExpandCache *expand_
}
if (expand_cache->all_enabled) {
if (expand_cache->invert) {
return false;
}
return true;
}