aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/seat.c
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2018-05-05 19:49:02 +0100
committerLibravatar emersion <contact@emersion.fr>2018-05-10 23:03:50 +0100
commit70b80b4698449f5bc3e2c5bf755439249db2fc29 (patch)
tree5c368355dd8bc32208404fd36930017820b4ae31 /sway/input/seat.c
parentDamage borders when damaging view (diff)
downloadsway-70b80b4698449f5bc3e2c5bf755439249db2fc29.tar.gz
sway-70b80b4698449f5bc3e2c5bf755439249db2fc29.tar.zst
sway-70b80b4698449f5bc3e2c5bf755439249db2fc29.zip
Damage container on focus
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r--sway/input/seat.c5
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,
530 if (container->type == C_VIEW) { 530 if (container->type == C_VIEW) {
531 seat_send_focus(seat, container); 531 seat_send_focus(seat, container);
532 } 532 }
533 container_damage_whole(container);
533 } 534 }
534 535
535 // clean up unfocused empty workspace on new output 536 // clean up unfocused empty workspace on new output
@@ -575,6 +576,10 @@ void seat_set_focus_warp(struct sway_seat *seat,
575 } 576 }
576 } 577 }
577 578
579 if (last_focus) {
580 container_damage_whole(last_focus);
581 }
582
578 if (last_focus && last_focus->type == C_VIEW && 583 if (last_focus && last_focus->type == C_VIEW &&
579 !input_manager_has_focus(seat->input, last_focus)) { 584 !input_manager_has_focus(seat->input, last_focus)) {
580 struct sway_view *view = last_focus->sway_view; 585 struct sway_view *view = last_focus->sway_view;