From 65bd4477dbad5dbdb8a30e2e70a4c0e0ec5e9c2b Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 6 Feb 2022 19:03:13 +0100 Subject: LibWeb: Plumb OOPWV focus state across the IPC boundary This makes focus outlines show up in OOPWV at last! :^) --- Userland/Libraries/LibWeb/OutOfProcessWebView.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Userland/Libraries/LibWeb/OutOfProcessWebView.h') diff --git a/Userland/Libraries/LibWeb/OutOfProcessWebView.h b/Userland/Libraries/LibWeb/OutOfProcessWebView.h index 1242ca0dc3..1f89dccbf8 100644 --- a/Userland/Libraries/LibWeb/OutOfProcessWebView.h +++ b/Userland/Libraries/LibWeb/OutOfProcessWebView.h @@ -102,6 +102,8 @@ private: virtual void keyup_event(GUI::KeyEvent&) override; virtual void theme_change_event(GUI::ThemeChangeEvent&) override; virtual void screen_rects_change_event(GUI::ScreenRectsChangeEvent&) override; + virtual void focusin_event(GUI::FocusEvent&) override; + virtual void focusout_event(GUI::FocusEvent&) override; // ^AbstractScrollableWidget virtual void did_scroll() override; -- cgit v1.2.3