From b36357b0f1801ded2db5dbc65350dfd95d4d14b2 Mon Sep 17 00:00:00 2001 From: aristocratos Date: Fri, 1 May 2026 12:20:22 +0200 Subject: [PATCH] Fixed missing CPU package temperature color (numeric value) --- src/btop_draw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/btop_draw.cpp b/src/btop_draw.cpp index e943d95c..40d150f2 100644 --- a/src/btop_draw.cpp +++ b/src/btop_draw.cpp @@ -851,7 +851,7 @@ namespace Cpu { if ((b_column_size > 1 or b_columns > 1) and temp_graphs.size() >= 1ll) out += ' ' + Theme::c("inactive_fg") + graph_bg * 5 + Mv::l(5) + temp_color + temp_graphs.at(0)(safeVal(cpu.temp, 0), data_same or redraw); - out += rjust(to_string(temp), 4) + Theme::c("main_fg") + unit; + out += temp_color + rjust(to_string(temp), 4) + Theme::c("main_fg") + unit; } if (show_watts) {