diff --git a/Userland/Libraries/LibWeb/Painting/Paintable.cpp b/Userland/Libraries/LibWeb/Painting/Paintable.cpp index 83a19f6a4e..be4d3c64d8 100644 --- a/Userland/Libraries/LibWeb/Painting/Paintable.cpp +++ b/Userland/Libraries/LibWeb/Painting/Paintable.cpp @@ -43,7 +43,7 @@ bool Paintable::handle_mousewheel(Badge, Gfx::IntPoint const&, uns HitTestResult Paintable::hit_test(Gfx::FloatPoint const&, HitTestType) const { - VERIFY_NOT_REACHED(); + return {}; } }