aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Brian Ashworth <bosrsf04@gmail.com>2018-06-06 16:41:19 -0400
committerLibravatar Brian Ashworth <bosrsf04@gmail.com>2018-06-06 16:41:19 -0400
commite7261e291766f6cbfb947ded4906ed8e6664b7bd (patch)
tree4328b6c930c59a9833b67facac8c4701966b0ac3
parentMerge pull request #2110 from smlx/initialise-cursor-previous (diff)
downloadsway-e7261e291766f6cbfb947ded4906ed8e6664b7bd.tar.gz
sway-e7261e291766f6cbfb947ded4906ed8e6664b7bd.tar.zst
sway-e7261e291766f6cbfb947ded4906ed8e6664b7bd.zip
Fix focusing after splitting tabs/stacks
-rw-r--r--sway/tree/layout.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/sway/tree/layout.c b/sway/tree/layout.c
index 79e7c87e..fe0243b6 100644
--- a/sway/tree/layout.c
+++ b/sway/tree/layout.c
@@ -874,11 +874,10 @@ struct sway_container *container_split(struct sway_container *child,
874 cont->x = child->x; 874 cont->x = child->x;
875 cont->y = child->y; 875 cont->y = child->y;
876 876
877 struct sway_seat *seat = input_manager_get_default_seat(input_manager);
878 bool set_focus = (seat_get_focus(seat) == child);
877 if (child->type == C_WORKSPACE) { 879 if (child->type == C_WORKSPACE) {
878 struct sway_seat *seat = input_manager_get_default_seat(input_manager);
879 struct sway_container *workspace = child; 880 struct sway_container *workspace = child;
880 bool set_focus = (seat_get_focus(seat) == workspace);
881
882 while (workspace->children->length) { 881 while (workspace->children->length) {
883 struct sway_container *ws_child = workspace->children->items[0]; 882 struct sway_container *ws_child = workspace->children->items[0];
884 container_remove_child(ws_child); 883 container_remove_child(ws_child);
@@ -890,10 +889,6 @@ struct sway_container *container_split(struct sway_container *child,
890 enum sway_container_layout old_layout = workspace->layout; 889 enum sway_container_layout old_layout = workspace->layout;
891 workspace->layout = layout; 890 workspace->layout = layout;
892 cont->layout = old_layout; 891 cont->layout = old_layout;
893
894 if (set_focus) {
895 seat_set_focus(seat, cont);
896 }
897 } else { 892 } else {
898 struct sway_container *old_parent = child->parent; 893 struct sway_container *old_parent = child->parent;
899 cont->layout = layout; 894 cont->layout = layout;
@@ -902,6 +897,14 @@ struct sway_container *container_split(struct sway_container *child,
902 wl_signal_emit(&child->events.reparent, old_parent); 897 wl_signal_emit(&child->events.reparent, old_parent);
903 } 898 }
904 899
900 if (set_focus) {
901 seat_set_focus(seat, cont);
902 if (cont->parent->layout == L_TABBED
903 || cont->parent->layout == L_STACKED) {
904 seat_set_focus(seat, child);
905 }
906 }
907
905 container_notify_subtree_changed(cont); 908 container_notify_subtree_changed(cont);
906 909
907 return cont; 910 return cont;