From 6bd4d44f73d665bf65e0d624c71f8ee4b7f32122 Mon Sep 17 00:00:00 2001 From: zhiyuang Date: Mon, 26 Jun 2023 22:02:03 +0800 Subject: [PATCH] LibWeb: Make two borders joints part painting work Unify using device pixel to compute step --- Userland/Libraries/LibWeb/Painting/BorderPainting.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/Libraries/LibWeb/Painting/BorderPainting.cpp b/Userland/Libraries/LibWeb/Painting/BorderPainting.cpp index 10819d075b..4077f046f3 100644 --- a/Userland/Libraries/LibWeb/Painting/BorderPainting.cpp +++ b/Userland/Libraries/LibWeb/Painting/BorderPainting.cpp @@ -149,8 +149,8 @@ void paint_border(PaintContext& context, BorderEdge edge, DevicePixelRect const& auto draw_border = [&](auto const& border, auto const& radius, auto const& opposite_border, auto const& opposite_radius, auto p1_step_translate, auto p2_step_translate) { auto [p1, p2] = points_for_edge(edge, rect); - auto p1_step = radius ? 0 : border.width / device_pixel_width.value(); - auto p2_step = opposite_radius ? 0 : opposite_border.width / device_pixel_width.value(); + auto p1_step = radius ? 0 : context.enclosing_device_pixels(border.width).value() / device_pixel_width.value(); + auto p2_step = opposite_radius ? 0 : context.enclosing_device_pixels(opposite_border.width).value() / device_pixel_width.value(); for (DevicePixels i = 0; i < device_pixel_width; ++i) { draw_horizontal_or_vertical_line(p1, p2); p1_step_translate(p1, p1_step);