diff options
Diffstat (limited to 'source/frontend/StarChatBubbleSeparation.cpp')
-rw-r--r-- | source/frontend/StarChatBubbleSeparation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/frontend/StarChatBubbleSeparation.cpp b/source/frontend/StarChatBubbleSeparation.cpp index 23a34fe..ba22ed5 100644 --- a/source/frontend/StarChatBubbleSeparation.cpp +++ b/source/frontend/StarChatBubbleSeparation.cpp @@ -73,8 +73,8 @@ RectF separateBubble(List<RectF> const& sortedLeftEdges, List<RectF> const& sort if (overlappingBoxes.empty()) break; RectF overlapBoundBox = fold(overlappingBoxes, box, [](RectF const& a, RectF const& b) { return a.combined(b); }); - SpatialLogger::logPoly("screen", PolyF(box), { 255, 0, 0, 255 }); - SpatialLogger::logPoly("screen", PolyF(overlapBoundBox), { 0, 0, 255, 255 }); + //SpatialLogger::logPoly("screen", PolyF(box), { 255, 0, 0, 255 }); + //SpatialLogger::logPoly("screen", PolyF(overlapBoundBox), { 0, 0, 255, 255 }); auto height = box.height(); box.setYMin(overlapBoundBox.yMax()); box.setYMax(box.yMin() + height); |