aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/seatop_default.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/input/seatop_default.c')
-rw-r--r--sway/input/seatop_default.c13
1 files changed, 4 insertions, 9 deletions
diff --git a/sway/input/seatop_default.c b/sway/input/seatop_default.c
index 2bee389e..e6d6c11b 100644
--- a/sway/input/seatop_default.c
+++ b/sway/input/seatop_default.c
@@ -703,19 +703,14 @@ static void handle_pointer_axis(struct sway_seat *seat,
703 } else if (desired >= siblings->length) { 703 } else if (desired >= siblings->length) {
704 desired = siblings->length - 1; 704 desired = siblings->length - 1;
705 } 705 }
706 struct sway_node *old_focus = seat_get_focus(seat); 706
707 struct sway_container *new_sibling_con = siblings->items[desired]; 707 struct sway_container *new_sibling_con = siblings->items[desired];
708 struct sway_node *new_sibling = &new_sibling_con->node; 708 struct sway_node *new_sibling = &new_sibling_con->node;
709 struct sway_node *new_focus = 709 struct sway_node *new_focus =
710 seat_get_focus_inactive(seat, new_sibling); 710 seat_get_focus_inactive(seat, new_sibling);
711 if (node_has_ancestor(old_focus, tabcontainer)) { 711 // Use the focused child of the tabbed/stacked container, not the
712 seat_set_focus(seat, new_focus); 712 // container the user scrolled on.
713 } else { 713 seat_set_focus(seat, new_focus);
714 // Scrolling when focus is not in the tabbed container at all
715 seat_set_raw_focus(seat, new_sibling);
716 seat_set_raw_focus(seat, new_focus);
717 seat_set_raw_focus(seat, old_focus);
718 }
719 handled = true; 714 handled = true;
720 } 715 }
721 } 716 }