mirror of
https://git.mirrors.martin98.com/https://github.com/bambulab/BambuStudio.git
synced 2025-08-14 15:55:52 +08:00
FIX: prevent dead loop of conflict checker
jira: STUDIO-10282 Change-Id: I5722e9967cdd83cde5ef59aee37b0f7019e53d89
This commit is contained in:
parent
3f5ccacbdb
commit
b952006e4d
@ -122,7 +122,9 @@ float LinesBucketQueue::getCurrBottomZ()
|
||||
}
|
||||
|
||||
for (LinesBucket *bp : lowests) {
|
||||
float prevZ = bp->curBottomZ();
|
||||
bp->raise();
|
||||
if (bp->curBottomZ() == prevZ) continue;
|
||||
if (bp->valid()) { line_bucket_ptr_queue.push(bp); }
|
||||
}
|
||||
return layerBottomZ;
|
||||
|
Loading…
x
Reference in New Issue
Block a user