aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevin J. Pohly <djpohly@gmail.com>2020-08-02 18:49:00 -0500
committerDevin J. Pohly <djpohly@gmail.com>2020-08-02 18:49:23 -0500
commit0ac2f6616a5f0f3ab10b53dcf294862d87116421 (patch)
tree116fab7d441e99d81065f4be690579eb2a8db650
parent59cd8dec940f4838fa945e520d79946e1dd8d678 (diff)
fix an editing mistake
-rw-r--r--dwl.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/dwl.c b/dwl.c
index 8e33037..433c4b1 100644
--- a/dwl.c
+++ b/dwl.c
@@ -1166,9 +1166,9 @@ renderclients(Monitor *m, struct timespec *now)
/* This calls our render function for each surface among the
* xdg_surface's toplevel and popups. */
- rdata.output = m->wlr_output,
- rdata.when = now,
- rdata.x = c->geom.x + c->bw,
+ rdata.output = m->wlr_output;
+ rdata.when = now;
+ rdata.x = c->geom.x + c->bw;
rdata.y = c->geom.y + c->bw;
if (c->type != XDGShell)
wlr_surface_for_each_surface(c->surface.xwayland->surface, render, &rdata);
@@ -1194,8 +1194,8 @@ renderindependents(struct wlr_output *output, struct timespec *now)
if (!wlr_output_layout_intersects(output_layout, output, &geom))
continue;
- rdata.output = output,
- rdata.when = now,
+ rdata.output = output;
+ rdata.when = now;
rdata.x = c->surface.xwayland->x;
rdata.y = c->surface.xwayland->y;