From bcb13f2af28ad2a1db898e5d543e4efd190ee949 Mon Sep 17 00:00:00 2001 From: RipleyTom Date: Thu, 14 Mar 2024 06:44:43 +0100 Subject: [PATCH] Don't depend on b_column_size to show core temps --- 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 bfd12ce..7a91d01 100644 --- a/src/btop_draw.cpp +++ b/src/btop_draw.cpp @@ -694,7 +694,7 @@ namespace Cpu { if (show_temps) { temp_graphs.clear(); temp_graphs.emplace_back(5, 1, "temp", safeVal(cpu.temp, 0), graph_symbol, false, false, cpu.temp_max, -23); - if (not hide_cores and b_column_size > 1) { + if (not hide_cores) { for (const auto& i : iota((size_t)1, cpu.temp.size())) { temp_graphs.emplace_back(5, 1, "temp", safeVal(cpu.temp, i), graph_symbol, false, false, cpu.temp_max, -23); }