Commit 6434db5b authored by Hisham's avatar Hisham
Browse files

Differentiate threads by default.

parent dcfcae1e
......@@ -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;
}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment