aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/focus.c
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-07-27 09:10:10 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-07-28 22:41:04 +1000
commit538e083f61c363ef1127636d8fac1b7e4872e4c4 (patch)
tree7bb7c11bb066ba0e3277ee16068c14bd0409d43c /sway/commands/focus.c
parentAllow splitting a floating view (diff)
downloadsway-538e083f61c363ef1127636d8fac1b7e4872e4c4.tar.gz
sway-538e083f61c363ef1127636d8fac1b7e4872e4c4.tar.zst
sway-538e083f61c363ef1127636d8fac1b7e4872e4c4.zip
Fix focus mode_toggle from a child of a floating container
Also fixes a crash when unfloating a window. It needs to add it back to the tiling tree as a sibling rather than a child, because the reference container might be a view.
Diffstat (limited to 'sway/commands/focus.c')
-rw-r--r--sway/commands/focus.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/sway/commands/focus.c b/sway/commands/focus.c
index ce3d032f..76d3f1dc 100644
--- a/sway/commands/focus.c
+++ b/sway/commands/focus.c
@@ -35,6 +35,15 @@ static struct cmd_results *focus_mode(struct sway_container *con,
35 struct sway_seat *seat, bool floating) { 35 struct sway_seat *seat, bool floating) {
36 struct sway_container *ws = con->type == C_WORKSPACE ? 36 struct sway_container *ws = con->type == C_WORKSPACE ?
37 con : container_parent(con, C_WORKSPACE); 37 con : container_parent(con, C_WORKSPACE);
38
39 // If the container is in a floating split container,
40 // operate on the split container instead of the child.
41 if (container_is_floating_or_child(con)) {
42 while (con->parent->layout != L_FLOATING) {
43 con = con->parent;
44 }
45 }
46
38 struct sway_container *new_focus = NULL; 47 struct sway_container *new_focus = NULL;
39 if (floating) { 48 if (floating) {
40 new_focus = seat_get_focus_inactive(seat, ws->sway_workspace->floating); 49 new_focus = seat_get_focus_inactive(seat, ws->sway_workspace->floating);
@@ -99,7 +108,7 @@ struct cmd_results *cmd_focus(int argc, char **argv) {
99 } else if (strcmp(argv[0], "tiling") == 0) { 108 } else if (strcmp(argv[0], "tiling") == 0) {
100 return focus_mode(con, seat, false); 109 return focus_mode(con, seat, false);
101 } else if (strcmp(argv[0], "mode_toggle") == 0) { 110 } else if (strcmp(argv[0], "mode_toggle") == 0) {
102 return focus_mode(con, seat, !container_is_floating(con)); 111 return focus_mode(con, seat, !container_is_floating_or_child(con));
103 } 112 }
104 113
105 if (strcmp(argv[0], "output") == 0) { 114 if (strcmp(argv[0], "output") == 0) {