aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevin J. Pohly <djpohly@gmail.com>2020-07-26 19:27:49 -0400
committerDevin J. Pohly <djpohly@gmail.com>2020-07-26 19:27:49 -0400
commitd5fdd999ac7df21f535dbce598a7030eb7d1d2b4 (patch)
tree6c07002b777acab489a913aae8332aec140d5c21
parent5248efd407de4f8a1b6744092c21436891971b4e (diff)
make border color selection concise
-rw-r--r--dwl.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/dwl.c b/dwl.c
index e56f7b9..f7f88f1 100644
--- a/dwl.c
+++ b/dwl.c
@@ -1166,11 +1166,8 @@ renderclients(Monitor *m, struct timespec *now)
{ox, oy + c->bw + h, w + 2 * c->bw, c->bw}, /* bottom */
};
- if (c == sel)
- color = focuscolor;
- else
- color = bordercolor;
-
+ /* Draw window borders */
+ color = (c == sel) ? focuscolor : bordercolor;
for (i = 0; i < 4; i++) {
scalebox(&borders[i], m->wlr_output->scale);
wlr_render_rect(drw, &borders[i], color,