Allow borderpx = 0

This commit is contained in:
Stivvo 2020-09-06 10:27:24 +02:00
parent 621d4c9173
commit d8570d5ceb
1 changed files with 2 additions and 2 deletions

4
dwl.c
View File

@ -1254,7 +1254,7 @@ renderclients(Monitor *m, struct timespec *now)
wlr_output_layout_output_coords(output_layout, m->wlr_output,
&ox, &oy);
if (c->bw == 0)
if (c->isfullscreen || borderpx == 0)
goto render;
w = surface->current.width;
@ -1274,7 +1274,7 @@ renderclients(Monitor *m, struct timespec *now)
m->wlr_output->transform_matrix);
}
render:
render:
/* This calls our render function for each surface among the
* xdg_surface's toplevel and popups. */
rdata.output = m->wlr_output;