aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-09-06 23:25:10 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-09-06 23:25:10 +1000
commitf30527e0cd539ba73a94bcdfe4d5c6208940c421 (patch)
treec5eaa0617251d6871ca8cd3685c9428ba0231068 /sway/input
parentMerge pull request #2592 from RyanDwyer/fix-fullscreen-unmap-focus (diff)
downloadsway-f30527e0cd539ba73a94bcdfe4d5c6208940c421.tar.gz
sway-f30527e0cd539ba73a94bcdfe4d5c6208940c421.tar.zst
sway-f30527e0cd539ba73a94bcdfe4d5c6208940c421.zip
Don't dirty outputs unnecessarily
Diffstat (limited to 'sway/input')
-rw-r--r--sway/input/seat.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 6b00825e..9ee85e9b 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -605,10 +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_output) { 608 if (last_workspace != new_workspace && last_output == new_output) {
609 node_set_dirty(&last_output->node);
610 }
611 if (new_output) {
612 node_set_dirty(&new_output->node); 609 node_set_dirty(&new_output->node);
613 } 610 }
614 611