mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
handle_seat_node_destroy: update seat->workspace
If an unmanaged or layer surface is focused when an output gets disabled and an empty workspace on the output was focused by the seat, the seat needs to refocus it's focus inactive to update the value of `seat->workspace`.
This commit is contained in:
parent
feeaa9486c
commit
41a771ae23
@ -146,6 +146,19 @@ static void handle_seat_node_destroy(struct wl_listener *listener, void *data) {
|
||||
struct sway_node *focus = seat_get_focus(seat);
|
||||
|
||||
if (node->type == N_WORKSPACE) {
|
||||
// If an unmanaged or layer surface is focused when an output gets
|
||||
// disabled and an empty workspace on the output was focused by the
|
||||
// seat, the seat needs to refocus it's focus inactive to update the
|
||||
// value of seat->workspace.
|
||||
if (seat->workspace == node->sway_workspace) {
|
||||
struct sway_node *node = seat_get_focus_inactive(seat, &root->node);
|
||||
seat_set_focus(seat, NULL);
|
||||
if (node) {
|
||||
seat_set_focus(seat, node);
|
||||
} else {
|
||||
seat->workspace = NULL;
|
||||
}
|
||||
}
|
||||
seat_node_destroy(seat_node);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user