mirror of
https://github.com/labwc/labwc.git
synced 2026-02-20 01:40:22 -05:00
cycle: fix spurious focus changes on finishing window switcher
As described in the `FIXME` comment in `cycle.c`, we had spurious focus changes where the keyboard focus is momentarily given to the previously focused window when finishing the window switcher, an then it is given to the selected window. This commit fixes this by adding a parameter in `seat_focus_override_end()` to avoid restoring the focus to the previously focused window. I also removed the check for `!seat->seat->keyboard_state.focused_surface` in `seat_focus_override_end()`. I thought it was necessary to avoid updating the keyboard focus if the focus was given to a session-lock surface before e.g. finishing window switching, but `seat_focus()` is no-op in that case anyway.
This commit is contained in:
parent
83b619c285
commit
4819f47f98
5 changed files with 12 additions and 11 deletions
|
|
@ -1430,7 +1430,7 @@ menu_execute_item(struct menuitem *item)
|
|||
struct server *server = item->parent->server;
|
||||
menu_close(server->menu_current);
|
||||
server->menu_current = NULL;
|
||||
seat_focus_override_end(&server->seat);
|
||||
seat_focus_override_end(&server->seat, /*restore_focus*/ true);
|
||||
|
||||
/*
|
||||
* We call the actions after closing the menu so that virtual keyboard
|
||||
|
|
@ -1533,7 +1533,7 @@ menu_close_root(struct server *server)
|
|||
menu_close(server->menu_current);
|
||||
server->menu_current = NULL;
|
||||
reset_pipemenus(server);
|
||||
seat_focus_override_end(&server->seat);
|
||||
seat_focus_override_end(&server->seat, /*restore_focus*/ true);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue