From 59a150e8d7f1e50d101d191448432a4424101c57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Wed, 3 Mar 2021 19:56:39 +0100 Subject: Follow followed process when switching thread visibilities Do not stop following a process when switching the visibility of userland or kernel threads. Related: #557 --- ProcessList.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'ProcessList.c') diff --git a/ProcessList.c b/ProcessList.c index 50a9b35d..869bde44 100644 --- a/ProcessList.c +++ b/ProcessList.c @@ -514,6 +514,7 @@ void ProcessList_rebuildPanel(ProcessList* this) { Panel_prune(this->panel); int size = ProcessList_size(this); int idx = 0; + bool foundFollowed = false; for (int i = 0; i < size; i++) { Process* p = ProcessList_get(this, i); @@ -527,12 +528,19 @@ void ProcessList_rebuildPanel(ProcessList* this) { Panel_set(this->panel, idx, (Object*)p); if (this->following != -1 && p->pid == this->following) { + foundFollowed = true; Panel_setSelected(this->panel, idx); this->panel->scrollV = currScrollV; } idx++; } + if (this->following != -1 && !foundFollowed) { + /* Reset if current followed pid not found */ + this->following = -1; + Panel_setSelectionColor(this->panel, PANEL_SELECTION_FOCUS); + } + if (this->following == -1) { /* If the last item was selected, keep the new last item selected */ if (currPos > 0 && currPos == currSize - 1) -- cgit v1.2.3