From 9c316cc14cafce1097583247710b6d74c1feb505 Mon Sep 17 00:00:00 2001 From: Benny Baumann Date: Sun, 22 Sep 2024 18:30:40 +0200 Subject: [PATCH] Keep following a process when resuming process updates Fixes: #1539 --- Action.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Action.c b/Action.c index 144ef2105..56fb3d0cb 100644 --- a/Action.c +++ b/Action.c @@ -634,7 +634,7 @@ static Htop_Reaction actionRedraw(ATTR_UNUSED State* st) { static Htop_Reaction actionTogglePauseUpdate(State* st) { st->pauseUpdate = !st->pauseUpdate; - return HTOP_REFRESH | HTOP_REDRAW_BAR; + return HTOP_REFRESH | HTOP_REDRAW_BAR | HTOP_KEEP_FOLLOWING; } static const struct {