Fix compilation issue in Action.c

Accidentally introduced by merging #1254
Caused by refactor in #1294

Fixes #1300
portage
Benny Baumann 3 years ago
parent cbf075d27b
commit 8d290c44b2
  1. 6
      Action.c

@ -231,7 +231,8 @@ static Htop_Reaction actionToggleKernelThreads(State* st) {
Settings* settings = st->host->settings;
settings->hideKernelThreads = !settings->hideKernelThreads;
settings->lastUpdate++;
ProcessList_scan(st->host->pl); // needed to not have a visible delay showing wrong data
Machine_scanTables(st->host); // needed to not have a visible delay showing wrong data
return HTOP_RECALCULATE | HTOP_SAVE_SETTINGS | HTOP_KEEP_FOLLOWING;
}
@ -240,7 +241,8 @@ static Htop_Reaction actionToggleUserlandThreads(State* st) {
Settings* settings = st->host->settings;
settings->hideUserlandThreads = !settings->hideUserlandThreads;
settings->lastUpdate++;
ProcessList_scan(st->host->pl); // needed to not have a visible delay showing wrong data
Machine_scanTables(st->host); // needed to not have a visible delay showing wrong data
return HTOP_RECALCULATE | HTOP_SAVE_SETTINGS | HTOP_KEEP_FOLLOWING;
}

Loading…
Cancel
Save