Shortened another statement

このコミットが含まれているのは:
MadcowOG 2023-02-26 16:28:40 -08:00
コミット cdeb1f8c7a
1個のファイルの変更2行の追加2行の削除

ファイルの表示

@ -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);