style fixes

This commit is contained in:
Devin J. Pohly 2020-07-30 21:55:49 -05:00
parent d6a18d69c0
commit 21437b62af
1 changed files with 5 additions and 10 deletions

15
dwl.c
View File

@ -323,8 +323,7 @@ applyrules(Client *c)
for (r = rules; r < END(rules); r++) {
if ((!r->title || strstr(title, r->title))
&& (!r->id || strstr(appid, r->id)))
{
&& (!r->id || strstr(appid, r->id))) {
c->isfloating = r->isfloating;
newtags |= r->tags;
i = 0;
@ -1212,8 +1211,7 @@ renderindependents(struct wlr_output *output, struct timespec *now)
struct render_data rdata;
struct wlr_box geom;
wl_list_for_each_reverse(c, &independents, link)
{
wl_list_for_each_reverse(c, &independents, link) {
geom.x = c->xwayland_surface->x;
geom.y = c->xwayland_surface->y;
geom.width = c->xwayland_surface->width;
@ -1247,10 +1245,8 @@ rendermon(struct wl_listener *listener, void *data)
clock_gettime(CLOCK_MONOTONIC, &now);
/* Do not render if any XDG clients have an outstanding resize. */
wl_list_for_each(c, &stack, slink)
{
if (c->resize)
{
wl_list_for_each(c, &stack, slink) {
if (c->resize) {
wlr_surface_send_frame_done(WLR_SURFACE(c), &now);
render = 0;
}
@ -1263,8 +1259,7 @@ rendermon(struct wl_listener *listener, void *data)
/* Begin the renderer (calls glViewport and some other GL sanity checks) */
wlr_renderer_begin(drw, m->wlr_output->width, m->wlr_output->height);
if (render)
{
if (render) {
wlr_renderer_clear(drw, rootcolor);
renderclients(m, &now);