aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/seat.c
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-09-06 21:15:24 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-09-06 21:15:24 +1000
commit5896781df45405d41545e6227f6749ee862e05ce (patch)
tree932c4e0cb49f9f04de77d0fa36f19a3f67c21d71 /sway/input/seat.c
parentMerge pull request #2589 from RyanDwyer/seat-set-focus-type (diff)
downloadsway-5896781df45405d41545e6227f6749ee862e05ce.tar.gz
sway-5896781df45405d41545e6227f6749ee862e05ce.tar.zst
sway-5896781df45405d41545e6227f6749ee862e05ce.zip
Make outputs dirty when changing focus
Fixes a workspace switch bug introduced by 5967ee1fbcba66ea57d971b924a51209a70d3aaa.
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r--sway/input/seat.c7
1 files changed, 7 insertions, 0 deletions
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,
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_output) {
609 node_set_dirty(&last_output->node);
610 }
611 if (new_output) {
612 node_set_dirty(&new_output->node);
613 }
614
608 // find new output's old workspace, which might have to be removed if empty 615 // find new output's old workspace, which might have to be removed if empty
609 struct sway_workspace *new_output_last_ws = NULL; 616 struct sway_workspace *new_output_last_ws = NULL;
610 if (new_output && last_output != new_output) { 617 if (new_output && last_output != new_output) {