mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
Merge pull request #1110 from apreiml/fix-focus-stack-change
fix: add stack update on focus change
This commit is contained in:
commit
12dd9544f9
2 changed files with 6 additions and 7 deletions
|
@ -236,7 +236,7 @@ error_session:
|
|||
## Wayland protocol implementation
|
||||
|
||||
Each protocol generally lives in a file with the same name, usually containing
|
||||
at leats one struct for each interface in the protocol. For instance,
|
||||
at least one struct for each interface in the protocol. For instance,
|
||||
`xdg_shell` lives in `types/wlr_xdg_shell.h` and has a `wlr_xdg_surface` struct.
|
||||
|
||||
### Globals
|
||||
|
|
|
@ -228,14 +228,13 @@ static void xwm_send_focus_window(struct wlr_xwm *xwm,
|
|||
// if the surface doesn't allow the focus request, we will send him
|
||||
// only the take focus event. It will get the focus by itself.
|
||||
xwm_send_wm_message(xsurface, &message_data, XCB_EVENT_MASK_NO_EVENT);
|
||||
return;
|
||||
} else {
|
||||
xwm_send_wm_message(xsurface, &message_data, XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT);
|
||||
|
||||
xcb_set_input_focus(xwm->xcb_conn, XCB_INPUT_FOCUS_POINTER_ROOT,
|
||||
xsurface->window_id, XCB_CURRENT_TIME);
|
||||
}
|
||||
|
||||
xwm_send_wm_message(xsurface, &message_data, XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT);
|
||||
|
||||
xcb_set_input_focus(xwm->xcb_conn, XCB_INPUT_FOCUS_POINTER_ROOT,
|
||||
xsurface->window_id, XCB_CURRENT_TIME);
|
||||
|
||||
uint32_t values[1];
|
||||
values[0] = XCB_STACK_MODE_ABOVE;
|
||||
xcb_configure_window(xwm->xcb_conn, xsurface->window_id,
|
||||
|
|
Loading…
Reference in a new issue