From 6434db5b6b813dc722e496e339791dc79dec9eb1 Mon Sep 17 00:00:00 2001 From: Hisham Date: Sun, 31 Jan 2016 12:07:48 +0100 Subject: [PATCH] Differentiate threads by default. --- Settings.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Settings.c b/Settings.c index 8eb5bbd7..06e8f370 100644 --- a/Settings.c +++ b/Settings.c @@ -323,6 +323,7 @@ Settings* Settings_new(int cpuCount) { this->updateProcessNames = false; this->cpuCount = cpuCount; this->showProgramPath = true; + this->highlightThreads = true; this->fields = calloc(Platform_numberOfFields+1, sizeof(ProcessField)); // TODO: turn 'fields' into a Vector, @@ -390,7 +391,7 @@ Settings* Settings_new(int cpuCount) { Settings_defaultMeters(this); this->hideKernelThreads = true; this->highlightMegabytes = true; - this->highlightThreads = false; + this->highlightThreads = true; this->headerMargin = true; } }