aboutsummaryrefslogtreecommitdiffstats
path: root/sway
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-05-01 18:23:40 +1000
committerLibravatar Drew DeVault <sir@cmpwn.com>2018-05-01 07:46:57 -0400
commit0375f966f19c0d404e08fad3cf8548ce9376a95b (patch)
treeea895ef075870996842d2c828174620bdfcb6a22 /sway
parentMove docblock and fix indenting of switch/case. (diff)
downloadsway-0375f966f19c0d404e08fad3cf8548ce9376a95b.tar.gz
sway-0375f966f19c0d404e08fad3cf8548ce9376a95b.tar.zst
sway-0375f966f19c0d404e08fad3cf8548ce9376a95b.zip
Fix surface offset when using borders
Diffstat (limited to 'sway')
-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,
423 soutput->sway_output->wlr_output); 423 soutput->sway_output->wlr_output);
424 double ox = lx - output_box->x; 424 double ox = lx - output_box->x;
425 double oy = ly - output_box->y; 425 double oy = ly - output_box->y;
426 double view_sx = ox - swayc->x; 426 double view_sx = ox - sview->x;
427 double view_sy = oy - swayc->y; 427 double view_sy = oy - sview->y;
428 428
429 double _sx, _sy; 429 double _sx, _sy;
430 struct wlr_surface *_surface; 430 struct wlr_surface *_surface;