sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit f30527e0cd539ba73a94bcdfe4d5c6208940c421
parent 4a3b705a12ad791ff93392716febd11e46ecffd5
Author: Ryan Dwyer <ryandwyer1@gmail.com>
Date:   Thu,  6 Sep 2018 23:25:10 +1000

Don't dirty outputs unnecessarily

Diffstat:
Msway/input/seat.c | 5+----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git 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); }