mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 08:00:20 +00:00
LibPDF: Fix typo in a variable name
No behavior change.
This commit is contained in:
parent
02936f6944
commit
387fecea7f
Notes:
sideshowbarker
2024-07-17 18:23:22 +09:00
Author: https://github.com/nico Commit: https://github.com/SerenityOS/serenity/commit/387fecea7f Pull-request: https://github.com/SerenityOS/serenity/pull/22399
1 changed files with 2 additions and 2 deletions
|
@ -1165,8 +1165,8 @@ Gfx::AffineTransform Renderer::calculate_image_space_transformation(int width, i
|
|||
|
||||
void Renderer::show_empty_image(int width, int height)
|
||||
{
|
||||
auto image_space_transofmation = calculate_image_space_transformation(width, height);
|
||||
auto image_border = image_space_transofmation.map(Gfx::IntRect { 0, 0, width, height });
|
||||
auto image_space_transformation = calculate_image_space_transformation(width, height);
|
||||
auto image_border = image_space_transformation.map(Gfx::IntRect { 0, 0, width, height });
|
||||
m_painter.stroke_path(rect_path(image_border), Color::Black, 1);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue