mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 08:36:15 +00:00
LibWeb: Transform blit corner clipping rectangle to device pixels
Rectangle saved in this command is only used to filter by bounding box, so the problem was not very visible before.
This commit is contained in:
committed by
Alexander Kalenik
parent
3d8349eb88
commit
7855d4a8f5
@@ -723,7 +723,7 @@ void PaintableWithLines::paint(PaintContext& context, PaintPhase phase) const
|
||||
if (should_clip_overflow) {
|
||||
context.recording_painter().restore();
|
||||
if (corner_clip_id.has_value()) {
|
||||
context.recording_painter().blit_corner_clipping(*corner_clip_id, clip_box.to_type<int>());
|
||||
context.recording_painter().blit_corner_clipping(*corner_clip_id, context.rounded_device_rect(clip_box).to_type<int>());
|
||||
corner_clip_id = {};
|
||||
}
|
||||
context.recording_painter().restore();
|
||||
|
||||
Reference in New Issue
Block a user