style: auto-format C/C++ sources with clang-format

This commit is contained in:
Leonmmcoset
2026-04-26 03:58:24 +00:00
committed by github-actions[bot]
parent 298de5e33f
commit fcc4e0c3b6
4 changed files with 22 additions and 21 deletions

View File

@@ -574,7 +574,8 @@ static void tm_draw_toolbar(const tm_app *app) {
tm_fill_rect(app->w, app->h, 0, y + TM_TOOLBAR_H - 1, app->w, 1, TM_COLOR_BORDER);
tm_draw_text(app->w, app->h, 18, y + 10, "PROCESSES", 2, TM_COLOR_TEXT);
tm_draw_button(app->w, app->h, 164, y + 10, 86, 28, "REFRESH", 0);
tm_draw_button(app->w, app->h, 260, y + 10, 94, 28, app->include_exited != 0 ? "ALL ON" : "ALL OFF", app->include_exited);
tm_draw_button(app->w, app->h, 260, y + 10, 94, 28, app->include_exited != 0 ? "ALL ON" : "ALL OFF",
app->include_exited);
if (kill_x > 370) {
tm_draw_button(app->w, app->h, kill_x, y + 10, 104, 28, "END TASK", app->selected >= 0);
}