Drop hideThreads Setting

It is only used to read process directories on RedHat beginning with a dot.
Unconditionally accept directories with a starting dot.
This commit is contained in:
Christian Göttsche
2020-11-15 20:07:24 +01:00
committed by BenBE
parent 9f67b95308
commit ad72b747fa
4 changed files with 1 additions and 7 deletions

View File

@ -212,7 +212,6 @@ static Htop_Reaction actionToggleKernelThreads(State* st) {
static Htop_Reaction actionToggleUserlandThreads(State* st) {
st->settings->hideUserlandThreads = !st->settings->hideUserlandThreads;
st->settings->hideThreads = st->settings->hideUserlandThreads;
return HTOP_RECALCULATE | HTOP_SAVE_SETTINGS;
}