From 5896781df45405d41545e6227f6749ee862e05ce Mon Sep 17 00:00:00 2001 From: Ryan Dwyer Date: Thu, 6 Sep 2018 21:15:24 +1000 Subject: [PATCH] Make outputs dirty when changing focus Fixes a workspace switch bug introduced by 5967ee1fbcba66ea57d971b924a51209a70d3aaa. --- sway/input/seat.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sway/input/seat.c b/sway/input/seat.c index 7c81e9d1..6b00825e 100644 --- a/sway/input/seat.c +++ b/sway/input/seat.c @@ -605,6 +605,13 @@ void seat_set_focus_warp(struct sway_seat *seat, struct sway_node *node, last_workspace->output : NULL; struct sway_output *new_output = new_workspace->output; + if (last_output) { + node_set_dirty(&last_output->node); + } + if (new_output) { + node_set_dirty(&new_output->node); + } + // find new output's old workspace, which might have to be removed if empty struct sway_workspace *new_output_last_ws = NULL; if (new_output && last_output != new_output) {