summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2018-07-16 09:54:09 +0100
committerLibravatar GitHub <noreply@github.com>2018-07-16 09:54:09 +0100
commita588b326c24c65a691596bc9eb72ce9080d9de91 (patch)
treee0a8829494541fddceb72a1b8b0668121367f5cf
parentMerge pull request #2280 from ianyfan/leaks (diff)
parentFix tab split focus bug (diff)
downloadsway-a588b326c24c65a691596bc9eb72ce9080d9de91.tar.gz
sway-a588b326c24c65a691596bc9eb72ce9080d9de91.tar.zst
sway-a588b326c24c65a691596bc9eb72ce9080d9de91.zip
Merge pull request #2282 from RyanDwyer/fix-tab-split-focus
Fix tab split focus bug
-rw-r--r--sway/input/seat.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 74f1375e..85321dbe 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -649,6 +649,7 @@ void seat_set_focus_warp(struct sway_seat *seat,
649 while (parent) { 649 while (parent) {
650 wl_list_remove(&parent->link); 650 wl_list_remove(&parent->link);
651 wl_list_insert(&seat->focus_stack, &parent->link); 651 wl_list_insert(&seat->focus_stack, &parent->link);
652 container_set_dirty(parent->container);
652 653
653 parent = 654 parent =
654 seat_container_from_container(seat, 655 seat_container_from_container(seat,