From 87c103e210081a71cbbaebf98cf6c255647f364c Mon Sep 17 00:00:00 2001 From: MacDue Date: Wed, 7 Jun 2023 22:43:29 +0100 Subject: [PATCH] LibWeb: Fix typo and slightly tidy CRC2D.fill_rect() --- .../Libraries/LibWeb/HTML/CanvasRenderingContext2D.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Userland/Libraries/LibWeb/HTML/CanvasRenderingContext2D.cpp b/Userland/Libraries/LibWeb/HTML/CanvasRenderingContext2D.cpp index 04cae43f30..2ce81f4ff6 100644 --- a/Userland/Libraries/LibWeb/HTML/CanvasRenderingContext2D.cpp +++ b/Userland/Libraries/LibWeb/HTML/CanvasRenderingContext2D.cpp @@ -74,11 +74,10 @@ void CanvasRenderingContext2D::fill_rect(float x, float y, float width, float he draw_clipped([&](auto& painter) { auto& drawing_state = this->drawing_state(); auto rect = drawing_state.transform.map(Gfx::FloatRect(x, y, width, height)); - auto color_fill = drawing_state.fill_style.as_color(); - if (color_fill.has_value()) { - painter.fill_rect(rect, *color_fill); + if (auto color = drawing_state.fill_style.as_color(); color.has_value()) { + painter.fill_rect(rect, *color); } else { - // FIXME: This should use AntiAliasingPainter::fill_rect() too but that does not support FillPath yet. + // FIXME: This should use AntiAliasingPainter::fill_rect() too but that does not support PaintStyle yet. painter.underlying_painter().fill_rect(rect.to_rounded(), *drawing_state.fill_style.to_gfx_paint_style()); } return rect;