aboutsummaryrefslogtreecommitdiff
path: root/sway/commands/move.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-04-06 16:13:26 -0400
committerGitHub <noreply@github.com>2018-04-06 16:13:26 -0400
commit640232eb225058a18f20190235f679caf678e1f7 (patch)
tree4323a9130346ca4d836b0ae70c03877e13310bfc /sway/commands/move.c
parent656ef558a2a8d55cf77cbcc8ce01c861cb78ac97 (diff)
Revert "Break everything^W^WUse wlr_box for sway_container"
Diffstat (limited to 'sway/commands/move.c')
-rw-r--r--sway/commands/move.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/sway/commands/move.c b/sway/commands/move.c
index e8668ce7..c954ab94 100644
--- a/sway/commands/move.c
+++ b/sway/commands/move.c
@@ -95,8 +95,7 @@ static struct cmd_results *cmd_move_container(struct sway_container *current,
}
struct sway_container *source = container_parent(current, C_OUTPUT);
struct sway_container *destination = output_in_direction(argv[3],
- source->sway_output->wlr_output,
- current->box.x, current->box.y);
+ source->sway_output->wlr_output, current->x, current->y);
if (!destination) {
return cmd_results_new(CMD_FAILURE, "move workspace",
"Can't find output with name/direction '%s'", argv[3]);
@@ -125,8 +124,8 @@ static struct cmd_results *cmd_move_workspace(struct sway_container *current,
return cmd_results_new(CMD_INVALID, "move", expected_syntax);
}
struct sway_container *source = container_parent(current, C_OUTPUT);
- int center_x = current->box.width / 2 + current->box.x,
- center_y = current->box.height / 2 + current->box.y;
+ int center_x = current->width / 2 + current->x,
+ center_y = current->height / 2 + current->y;
struct sway_container *destination = output_in_direction(argv[3],
source->sway_output->wlr_output, center_x, center_y);
if (!destination) {