From 8d290c44b2e8a163ed9762efcd5b0f1e5243658d Mon Sep 17 00:00:00 2001 From: Benny Baumann Date: Sat, 9 Sep 2023 19:13:54 +0200 Subject: Fix compilation issue in Action.c Accidentally introduced by merging #1254 Caused by refactor in #1294 Fixes #1300 --- Action.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Action.c') diff --git a/Action.c b/Action.c index 43bb5a62..2e2a3f26 100644 --- a/Action.c +++ b/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; } -- cgit v1.2.3