mirror of
https://github.com/labwc/labwc.git
synced 2025-11-02 09:01:47 -05:00
xwayland-unmanaged: focus parent surface on unmap
Re-focus on parent surface if it is available Fixes #352 relating to JetBrains and Intellij focus issues
This commit is contained in:
parent
e87aa19066
commit
61675b521c
1 changed files with 11 additions and 0 deletions
|
|
@ -84,6 +84,17 @@ unmanaged_handle_unmap(struct wl_listener *listener, void *data)
|
|||
|
||||
struct seat *seat = &unmanaged->server->seat;
|
||||
if (seat->seat->keyboard_state.focused_surface == xsurface->surface) {
|
||||
/*
|
||||
* Try to focus on parent surface
|
||||
* This seems to fix JetBrains/Intellij window focus issues
|
||||
*/
|
||||
if (xsurface->parent && xsurface->parent->surface
|
||||
&& wlr_xwayland_or_surface_wants_focus(xsurface->parent)) {
|
||||
seat_focus_surface(seat, xsurface->parent->surface);
|
||||
return;
|
||||
}
|
||||
|
||||
/* Try to focus on last created unmanaged xwayland surface */
|
||||
struct xwayland_unmanaged *u;
|
||||
struct wl_list *list = &unmanaged->server->unmanaged_surfaces;
|
||||
wl_list_for_each (u, list, link) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue