This commit is contained in:
Eric Wasylishen 2022-06-20 22:23:00 -06:00
parent 6770d8aa34
commit 3276cfec56
1 changed files with 6 additions and 1 deletions

View File

@ -386,7 +386,12 @@ public:
return true;
}
if (!a.is_mirrored(this) && a.will_clip_same_type(this)) {
if (!a.will_clip_same_type(this) && contents_are_type_equal(a, b)) {
// _noclipfaces
return true;
}
if (!a.is_mirrored(this)) {
return false;
}