aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/seat.c
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-09-07 08:08:40 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-09-07 08:08:40 +1000
commit763554e1be1e01360597bf2ee014a10f24d5806a (patch)
tree6c19a541162823425964423d8906227a6afd4353 /sway/input/seat.c
parentMerge pull request #2594 from RyanDwyer/fix-pinentry (diff)
downloadsway-763554e1be1e01360597bf2ee014a10f24d5806a.tar.gz
sway-763554e1be1e01360597bf2ee014a10f24d5806a.tar.zst
sway-763554e1be1e01360597bf2ee014a10f24d5806a.zip
Fix workspace switching
The output also needs to be made dirty when focusing a new output.
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r--sway/input/seat.c2
1 files changed, 1 insertions, 1 deletions
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,
605 last_workspace->output : NULL; 605 last_workspace->output : NULL;
606 struct sway_output *new_output = new_workspace->output; 606 struct sway_output *new_output = new_workspace->output;
607 607
608 if (last_workspace != new_workspace && last_output == new_output) { 608 if (last_workspace != new_workspace && new_output) {
609 node_set_dirty(&new_output->node); 609 node_set_dirty(&new_output->node);
610 } 610 }
611 611