aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dwyer <ryandwyer1@gmail.com>2018-05-01 18:23:40 +1000
committerRyan Dwyer <ryandwyer1@gmail.com>2018-05-01 18:23:40 +1000
commit2ceed512a82dbfdcf34305969c6d429cf0961816 (patch)
treee1daf3a26f7fda7a0af704d805cbdf89ba6a5607
parentabcad0ece9290233652832de17b3ad3e13263c29 (diff)
Fix surface offset when using borders
-rw-r--r--sway/tree/container.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c
index 03d7e49c..cb0233db 100644
--- a/sway/tree/container.c
+++ b/sway/tree/container.c
@@ -423,8 +423,8 @@ struct sway_container *container_at(struct sway_container *parent,
soutput->sway_output->wlr_output);
double ox = lx - output_box->x;
double oy = ly - output_box->y;
- double view_sx = ox - swayc->x;
- double view_sy = oy - swayc->y;
+ double view_sx = ox - sview->x;
+ double view_sy = oy - sview->y;
double _sx, _sy;
struct wlr_surface *_surface;