diff options
| author | Drew DeVault <sir@cmpwn.com> | 2018-09-11 19:19:17 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-11 19:19:17 -0400 | 
| commit | 4fbec701fcf1505d1c13d7f5d8b55264b8f07e4e (patch) | |
| tree | 82daa71d644f15c2e1e58ca9bdb2d4e1a75d3be9 /sway/commands | |
| parent | 822b45f4836c9a22af5a283e2aea6e4ecd514c22 (diff) | |
| parent | 679c7eb08c16daea8e3e1cff7bcf179e116d0e8e (diff) | |
| download | sway-4fbec701fcf1505d1c13d7f5d8b55264b8f07e4e.tar.xz | |
Merge pull request #2618 from RyanDwyer/tiling-drag
Implement tiling drag
Diffstat (limited to 'sway/commands')
| -rw-r--r-- | sway/commands/move.c | 2 | ||||
| -rw-r--r-- | sway/commands/tiling_drag.c | 13 | 
2 files changed, 14 insertions, 1 deletions
| diff --git a/sway/commands/move.c b/sway/commands/move.c index 2e9c00f8..b2cca5be 100644 --- a/sway/commands/move.c +++ b/sway/commands/move.c @@ -235,7 +235,7 @@ static void container_move_to_container(struct sway_container *container,  	container->saved_width = container->saved_height = 0;  	if (destination->view) { -		container_add_sibling(destination, container); +		container_add_sibling(destination, container, 1);  	} else {  		container_add_child(destination, container);  	} diff --git a/sway/commands/tiling_drag.c b/sway/commands/tiling_drag.c new file mode 100644 index 00000000..92fbde7c --- /dev/null +++ b/sway/commands/tiling_drag.c @@ -0,0 +1,13 @@ +#include "sway/commands.h" +#include "util.h" + +struct cmd_results *cmd_tiling_drag(int argc, char **argv) { +	struct cmd_results *error = NULL; +	if ((error = checkarg(argc, "tiling_drag", EXPECTED_EQUAL_TO, 1))) { +		return error; +	} + +	config->tiling_drag = parse_boolean(argv[0], config->tiling_drag); + +	return cmd_results_new(CMD_SUCCESS, NULL, NULL); +} | 
