diff --git a/Settings.c b/Settings.c index 8eb5bbd7beea59e93175085e961d00275636b095..06e8f37069ce61e476533e9b55ae4b900f751f48 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; } }