diff --git a/Userland/Libraries/LibGfx/Painter.cpp b/Userland/Libraries/LibGfx/Painter.cpp index 6e33a43f35..295e9897f1 100644 --- a/Userland/Libraries/LibGfx/Painter.cpp +++ b/Userland/Libraries/LibGfx/Painter.cpp @@ -1253,6 +1253,7 @@ void Painter::draw_physical_pixel(const IntPoint& physical_position, Color color } IntRect rect { physical_position, { thickness, thickness } }; + rect.intersect(clip_rect()); fill_physical_rect(rect, color); }