diff options
author | Ryan Dwyer <[email protected]> | 2018-07-26 22:42:58 +1000 |
---|---|---|
committer | Ryan Dwyer <[email protected]> | 2018-07-28 22:41:04 +1000 |
commit | 936168e740067a8658c7097ff76588b070faa71f (patch) | |
tree | c16935258c2b040f4a49a236893801bfe9331be2 /sway/commands/floating.c | |
parent | 902a1402ba35be3fbc3c054cd7af5a8bda5f8fd6 (diff) |
Operate on floating split container when a child is focused
Diffstat (limited to 'sway/commands/floating.c')
-rw-r--r-- | sway/commands/floating.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sway/commands/floating.c b/sway/commands/floating.c index b67e736f..31de5ec3 100644 --- a/sway/commands/floating.c +++ b/sway/commands/floating.c @@ -29,6 +29,14 @@ struct cmd_results *cmd_floating(int argc, char **argv) { seat_set_focus(config->handler_context.seat, container); } + // If the container is in a floating split container, + // operate on the split container instead of the child. + if (container_is_floating_or_child(container)) { + while (container->parent->layout != L_FLOATING) { + container = container->parent; + } + } + bool wants_floating; if (strcasecmp(argv[0], "enable") == 0) { wants_floating = true; |