diff --git a/Userland/Applications/Browser/BrowserWindow.cpp b/Userland/Applications/Browser/BrowserWindow.cpp index 47659ae462..f15429b09c 100644 --- a/Userland/Applications/Browser/BrowserWindow.cpp +++ b/Userland/Applications/Browser/BrowserWindow.cpp @@ -718,6 +718,10 @@ void BrowserWindow::event(Core::Event& event) case GUI::Event::Resize: broadcast_window_size(static_cast(event).size()); break; + case GUI::Event::KeyDown: + // FIXME: add support for hotkeys *within* ladybird + event.ignore(); + break; default: break; }