summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2018-09-06 10:08:57 -0400
committerFurkan Sahin <furkan-dev@proton.me>2018-09-06 10:08:57 -0400
commitc6fa03c5fb6875b877c11d1a90c3e1ff4a6dfabb (patch)
treec5eaa0617251d6871ca8cd3685c9428ba0231068
parentfbc75b27d30b73f31eb0c682f79996fdd34d90ab (diff)
parent29e980a5d24c69133f930bc459175b8339be7dc5 (diff)
Merge pull request #2593 from RyanDwyer/dont-be-so-dirty
Don't dirty outputs unnecessarily
-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,
last_workspace->output : NULL;
struct sway_output *new_output = new_workspace->output;
- if (last_output) {
- node_set_dirty(&last_output->node);
- }
- if (new_output) {
+ if (last_workspace != new_workspace && last_output == new_output) {
node_set_dirty(&new_output->node);
}