summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2018-09-06 21:15:24 +1000
committerFurkan Sahin <furkan-dev@proton.me>2018-09-06 21:15:24 +1000
commit605d239de8af446e0f57d7fb607f7f6290eb6827 (patch)
tree932c4e0cb49f9f04de77d0fa36f19a3f67c21d71
parent46c81f9fadc16a57beba09901230040391fe5dcc (diff)
Make outputs dirty when changing focus
Fixes a workspace switch bug introduced by a45308966f699f9e6ef8628b928c2d535187bfdc.
-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,
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) {