summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Page/Page.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibWeb/Page/Page.cpp')
-rw-r--r--Userland/Libraries/LibWeb/Page/Page.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Page/Page.cpp b/Userland/Libraries/LibWeb/Page/Page.cpp
index dfc9ada662..1ec5d15666 100644
--- a/Userland/Libraries/LibWeb/Page/Page.cpp
+++ b/Userland/Libraries/LibWeb/Page/Page.cpp
@@ -72,6 +72,11 @@ Gfx::Palette Page::palette() const
return m_client.palette();
}
+bool Page::handle_mousewheel(const Gfx::IntPoint& position, unsigned button, unsigned modifiers, int wheel_delta)
+{
+ return main_frame().event_handler().handle_mousewheel(position, button, modifiers, wheel_delta);
+}
+
bool Page::handle_mouseup(const Gfx::IntPoint& position, unsigned button, unsigned modifiers)
{
return main_frame().event_handler().handle_mouseup(position, button, modifiers);