From 764489e73760534d49760af123cae46109564e86 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Fri, 6 Apr 2018 15:03:05 -0400 Subject: Break everything^W^WUse wlr_box for sway_container --- sway/tree/view.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sway/tree/view.c') diff --git a/sway/tree/view.c b/sway/tree/view.c index 9855c5e1..8ceb0d6c 100644 --- a/sway/tree/view.c +++ b/sway/tree/view.c @@ -96,8 +96,8 @@ void view_damage_from(struct sway_view *view) { static void view_get_layout_box(struct sway_view *view, struct wlr_box *box) { struct sway_container *output = container_parent(view->swayc, C_OUTPUT); - box->x = output->x + view->swayc->x; - box->y = output->y + view->swayc->y; + box->x = output->box.x + view->swayc->box.x; + box->y = output->box.y + view->swayc->box.y; box->width = view->width; box->height = view->height; } @@ -216,13 +216,13 @@ void view_unmap(struct sway_view *view) { } void view_update_position(struct sway_view *view, double ox, double oy) { - if (view->swayc->x == ox && view->swayc->y == oy) { + if (view->swayc->box.x == ox && view->swayc->box.y == oy) { return; } view_damage_whole(view); - view->swayc->x = ox; - view->swayc->y = oy; + view->swayc->box.x = ox; + view->swayc->box.y = oy; view_damage_whole(view); } -- cgit v1.2.3