Move keyboard focus when foregrounding windows on X11 (#13071)

Release Notes:

- N/A
This commit is contained in:
Conrad Irwin 2024-06-14 16:16:03 -06:00 committed by GitHub
parent 831f7dbbc0
commit 411ee7a47c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -770,6 +770,14 @@ impl PlatformWindow for X11Window {
.xcb_connection .xcb_connection
.configure_window(self.0.x_window, &win_aux) .configure_window(self.0.x_window, &win_aux)
.log_err(); .log_err();
self.0
.xcb_connection
.set_input_focus(
xproto::InputFocus::POINTER_ROOT,
self.0.x_window,
xproto::Time::CURRENT_TIME,
)
.log_err();
} }
fn is_active(&self) -> bool { fn is_active(&self) -> bool {