diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-05-10 18:46:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-10 18:46:14 -0400 |
commit | fbddd34b47fd774631d2a5495e4b0b69acb34688 (patch) | |
tree | 7b74a17124cb1d8a0adf777b9cb337574bea52a7 /sway/input/seat.c | |
parent | 3bab37858a2e85982aef3588064325405618c8e7 (diff) | |
parent | 44fcc06efd1a3d4bc37141c723c6654f60d8f923 (diff) |
Merge pull request #1923 from emersion/full-damage-tracking
Implement full damage tracking
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r-- | sway/input/seat.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c index 443fe367..2c279ff2 100644 --- a/sway/input/seat.c +++ b/sway/input/seat.c @@ -530,6 +530,7 @@ void seat_set_focus_warp(struct sway_seat *seat, if (container->type == C_VIEW) { seat_send_focus(seat, container); } + container_damage_whole(container); } // clean up unfocused empty workspace on new output @@ -575,6 +576,10 @@ void seat_set_focus_warp(struct sway_seat *seat, } } + if (last_focus) { + container_damage_whole(last_focus); + } + if (last_focus && last_focus->type == C_VIEW && !input_manager_has_focus(seat->input, last_focus)) { struct sway_view *view = last_focus->sway_view; |