summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-05-29 22:46:43 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-06-01 23:14:58 +1000
commitf7cadf23332c469d34e7b5811469842d68ad9474 (patch)
tree9582e3f9c00efe62ac389e93d05ad6521215823d
parentFix fullscreen position (diff)
downloadsway-f7cadf23332c469d34e7b5811469842d68ad9474.tar.gz
sway-f7cadf23332c469d34e7b5811469842d68ad9474.tar.zst
sway-f7cadf23332c469d34e7b5811469842d68ad9474.zip
Adjust move command to account for changed coordinate system
-rw-r--r--sway/commands/move.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sway/commands/move.c b/sway/commands/move.c
index 890b1a8c..dc9a6f6f 100644
--- a/sway/commands/move.c
+++ b/sway/commands/move.c
@@ -13,16 +13,14 @@
13#include "stringop.h" 13#include "stringop.h"
14#include "list.h" 14#include "list.h"
15 15
16static const char* expected_syntax = 16static const char* expected_syntax =
17 "Expected 'move <left|right|up|down> <[px] px>' or " 17 "Expected 'move <left|right|up|down> <[px] px>' or "
18 "'move <container|window> to workspace <name>' or " 18 "'move <container|window> to workspace <name>' or "
19 "'move <container|window|workspace> to output <name|direction>' or " 19 "'move <container|window|workspace> to output <name|direction>' or "
20 "'move position mouse'"; 20 "'move position mouse'";
21 21
22static struct sway_container *output_in_direction(const char *direction, 22static struct sway_container *output_in_direction(const char *direction,
23 struct wlr_output *reference, int ref_ox, int ref_oy) { 23 struct wlr_output *reference, int ref_lx, int ref_ly) {
24 int ref_lx = ref_ox + reference->lx,
25 ref_ly = ref_oy + reference->ly;
26 struct { 24 struct {
27 char *name; 25 char *name;
28 enum wlr_direction direction; 26 enum wlr_direction direction;