diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-04-06 16:13:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-06 16:13:26 -0400 |
commit | 640232eb225058a18f20190235f679caf678e1f7 (patch) | |
tree | 4323a9130346ca4d836b0ae70c03877e13310bfc /sway/desktop/desktop.c | |
parent | 656ef558a2a8d55cf77cbcc8ce01c861cb78ac97 (diff) |
Revert "Break everything^W^WUse wlr_box for sway_container"
Diffstat (limited to 'sway/desktop/desktop.c')
-rw-r--r-- | sway/desktop/desktop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/desktop/desktop.c b/sway/desktop/desktop.c index f0a14445..3a13191f 100644 --- a/sway/desktop/desktop.c +++ b/sway/desktop/desktop.c @@ -8,7 +8,7 @@ void desktop_damage_whole_surface(struct wlr_surface *surface, double lx, struct sway_container *cont = root_container.children->items[i]; if (cont->type == C_OUTPUT) { output_damage_whole_surface(cont->sway_output, - lx - cont->box.x, ly - cont->box.y, surface); + lx - cont->x, ly - cont->y, surface); } } } |