From 763554e1be1e01360597bf2ee014a10f24d5806a Mon Sep 17 00:00:00 2001 From: Ryan Dwyer Date: Fri, 7 Sep 2018 08:08:40 +1000 Subject: [PATCH] Fix workspace switching The output also needs to be made dirty when focusing a new output. --- sway/input/seat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sway/input/seat.c b/sway/input/seat.c index 9ee85e9b..e86a2b81 100644 --- a/sway/input/seat.c +++ b/sway/input/seat.c @@ -605,7 +605,7 @@ 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_workspace != new_workspace && last_output == new_output) { + if (last_workspace != new_workspace && new_output) { node_set_dirty(&new_output->node); }