From fee31daa5572ed6d60ea573238121904582bf6c8 Mon Sep 17 00:00:00 2001 From: Ryan Fleury Date: Tue, 6 Aug 2024 15:08:41 -0700 Subject: [PATCH] fix system processes lister --- src/df/gfx/df_views.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/df/gfx/df_views.c b/src/df/gfx/df_views.c index d31eda26..2a8726fc 100644 --- a/src/df/gfx/df_views.c +++ b/src/df/gfx/df_views.c @@ -3740,7 +3740,7 @@ DF_VIEW_UI_FUNCTION_DEF(SystemProcesses) } // rjf: process number - UI_PrefWidth(ui_text_dim(1, 1)) UI_TextAlignment(UI_TextAlign_Center) + UI_PrefWidth(ui_text_dim(1, 1)) UI_TextAlignment(UI_TextAlign_Center) UI_TextPadding(0) { ui_labelf("[PID: "); UI_Box *pid_label = ui_build_box_from_stringf(UI_BoxFlag_DrawText, "%i##pid_label", info->info.pid);