summaryrefslogtreecommitdiff
path: root/sway/desktop/output.c
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2018-04-06 15:57:57 -0400
committerGitHub <[email protected]>2018-04-06 15:57:57 -0400
commit656ef558a2a8d55cf77cbcc8ce01c861cb78ac97 (patch)
tree243104969dc80855d313faf5a0d360dd5508dc52 /sway/desktop/output.c
parentd447460c0153a76a0bc484bb9866cef658b3102f (diff)
parent764489e73760534d49760af123cae46109564e86 (diff)
Merge pull request #1757 from swaywm/boooooooxes
Break everything^W^WUse wlr_box for sway_container
Diffstat (limited to 'sway/desktop/output.c')
-rw-r--r--sway/desktop/output.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index aa18f1b8..49ffe74c 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -192,17 +192,22 @@ static void render_view(struct sway_container *view, void *data) {
int window_offset_x = view->sway_view->wlr_xdg_surface_v6->geometry.x;
int window_offset_y = view->sway_view->wlr_xdg_surface_v6->geometry.y;
render_surface(surface, wlr_output, when,
- view->x - window_offset_x, view->y - window_offset_y, 0, alpha);
- render_xdg_v6_popups(sway_view->wlr_xdg_surface_v6, wlr_output,
- when, view->x - window_offset_x, view->y - window_offset_y, 0, alpha);
+ view->box.x - window_offset_x,
+ view->box.y - window_offset_y,
+ 0, alpha);
+ render_xdg_v6_popups(sway_view->wlr_xdg_surface_v6, wlr_output, when,
+ view->box.x - window_offset_x,
+ view->box.y - window_offset_y,
+ 0, alpha);
break;
}
case SWAY_VIEW_WL_SHELL:
render_wl_shell_surface(sway_view->wlr_wl_shell_surface, wlr_output,
- when, view->x, view->y, 0, alpha, false);
+ when, view->box.x, view->box.y, 0, alpha, false);
break;
case SWAY_VIEW_XWAYLAND:
- render_surface(surface, wlr_output, when, view->x, view->y, 0, alpha);
+ render_surface(surface, wlr_output, when,
+ view->box.x, view->box.y, 0, alpha);
break;
}
}