LibGfx: Invalidate path bounding boxes when invalidating split lines

If the lines are no longer valid then the bounding box (which is derived
from the lines) is also invalid.
This commit is contained in:
MacDue 2023-06-16 19:02:00 +01:00 committed by Andreas Kling
commit 9e57f8d183
Notes: sideshowbarker 2024-07-17 00:23:42 +09:00

View file

@ -253,6 +253,7 @@ public:
private:
void invalidate_split_lines()
{
m_bounding_box.clear();
m_split_lines.clear();
}
void segmentize_path();