diff options
author | Devin J. Pohly <djpohly@gmail.com> | 2020-05-03 11:23:51 -0500 |
---|---|---|
committer | Devin J. Pohly <djpohly@gmail.com> | 2020-05-03 11:23:51 -0500 |
commit | 835a46ef30244be1cda44e1539fc6882f0a28091 (patch) | |
tree | cafcf26592ebfac95a6a5fc79a18bdf01a622cc4 /dwl.c | |
parent | 1d0350fa3d5a72081e346b6d8f3800d340de18fe (diff) |
style
Diffstat (limited to 'dwl.c')
-rw-r--r-- | dwl.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1308,10 +1308,9 @@ tile(Monitor *m) unsigned int i, n = 0, h, mw, my, ty; Client *c; - wl_list_for_each(c, &clients, link) { + wl_list_for_each(c, &clients, link) if (VISIBLEON(c, m) && !c->isfloating) n++; - } if (n == 0) return; |