sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit c95847c9e17cf42a8ff23f791232c0ddd671ba6e
parent da2a87f6c71bfe90a4d77542bfc7ed22899f67be
Author: Ryan Dwyer <ryandwyer1@gmail.com>
Date:   Thu, 26 Jul 2018 23:00:58 +1000

Allow splitting a floating view

Diffstat:
Msway/commands/split.c | 4----
1 file changed, 0 insertions(+), 4 deletions(-)

diff --git a/sway/commands/split.c b/sway/commands/split.c @@ -10,10 +10,6 @@ static struct cmd_results *do_split(int layout) { struct sway_container *con = config->handler_context.current_container; - if (container_is_floating(con)) { - return cmd_results_new(CMD_FAILURE, "split", - "Can't split a floating view"); - } struct sway_container *parent = container_split(con, layout); container_create_notify(parent); arrange_windows(parent->parent);