Merge pull request #34 from tiosgz/layer-shell-pos
Do not add output position twice when rendering
This commit is contained in:
commit
ed20755135
1 changed files with 2 additions and 2 deletions
|
@ -39,8 +39,8 @@ render_layer_surface(struct wlr_surface *surface, int x, int y, void *data)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
int ox = rdata->output_lx + x + geom->x;
|
int ox = x + geom->x;
|
||||||
int oy = rdata->output_ly + y + geom->y;
|
int oy = y + geom->y;
|
||||||
|
|
||||||
struct wlr_box box = {
|
struct wlr_box box = {
|
||||||
.x = ox * output->scale,
|
.x = ox * output->scale,
|
||||||
|
|
Loading…
Reference in a new issue