diff --git a/Userland/Applications/PixelPaint/Tools/Tool.cpp b/Userland/Applications/PixelPaint/Tools/Tool.cpp index 27694b9650..d1e6f9f6b2 100644 --- a/Userland/Applications/PixelPaint/Tools/Tool.cpp +++ b/Userland/Applications/PixelPaint/Tools/Tool.cpp @@ -56,7 +56,7 @@ void Tool::on_keydown(GUI::KeyEvent& event) Gfx::IntPoint Tool::editor_stroke_position(Gfx::IntPoint const& pixel_coords, int stroke_thickness) const { auto position = m_editor->image_position_to_editor_position(pixel_coords); - auto offset = (stroke_thickness % 2 == 0) ? m_editor->scale() : m_editor->scale() / 2; + auto offset = (stroke_thickness % 2 == 0) ? 0 : m_editor->scale() / 2; position = position.translated(offset, offset); return position.to_type(); }