From cdeb1f8c7ae6d116cc599d24b81c83bdf8dde2fe Mon Sep 17 00:00:00 2001 From: MadcowOG Date: Sun, 26 Feb 2023 16:28:40 -0800 Subject: [PATCH] Shortened another statement --- src/bar.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bar.c b/src/bar.c index 5ad8512..dfc8202 100644 --- a/src/bar.c +++ b/src/bar.c @@ -233,8 +233,8 @@ void bar_title_render(Bar* bar, cairo_t* painter, int* x) { if (!bar->floating) goto done; - int boxHeight = bar_font.height / 9; - int boxWidth = bar_font.height / 6 + 1; + int boxHeight = bar_font.height / 9, + boxWidth = bar_font.height / 6 + 1; set_color(painter, grey3); cairo_rectangle(painter, *x + boxHeight + 0.5, boxHeight + 0.5, boxWidth, boxWidth);