diff --git a/Userland/Libraries/LibWeb/Layout/BlockBox.h b/Userland/Libraries/LibWeb/Layout/BlockBox.h index 8c00ee0024..4833d80519 100644 --- a/Userland/Libraries/LibWeb/Layout/BlockBox.h +++ b/Userland/Libraries/LibWeb/Layout/BlockBox.h @@ -39,7 +39,7 @@ public: private: virtual bool is_block_box() const final { return true; } - virtual bool wants_mouse_events() const override { return true; } + virtual bool wants_mouse_events() const override { return false; } virtual bool handle_mousewheel(Badge, const Gfx::IntPoint&, unsigned buttons, unsigned modifiers, int wheel_delta) override; bool should_clip_overflow() const;