summaryrefslogtreecommitdiffstats
path: root/ScreenManager.c
diff options
context:
space:
mode:
authorDaniel Lange <DLange@git.local>2020-12-09 11:43:53 +0100
committerBenBE <BenBE@geshi.org>2020-12-09 13:28:15 +0100
commit7b739b6292bbc199273a1c4133fe2e03280b707c (patch)
tree5c81cd6b6fccb4ea999a77e4fe4e0f219cfe80cd /ScreenManager.c
parentded9c5d36332401bb8d5e33b6f72de188a42560d (diff)
Fix pause mode ("Z") in tree view
Diffstat (limited to 'ScreenManager.c')
-rw-r--r--ScreenManager.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ScreenManager.c b/ScreenManager.c
index ac93721d..94904b5f 100644
--- a/ScreenManager.c
+++ b/ScreenManager.c
@@ -106,7 +106,7 @@ static void checkRecalculation(ScreenManager* this, double* oldTime, int* sortTi
if (*rescan) {
*oldTime = newTime;
ProcessList_scan(pl, this->state->pauseProcessUpdate);
- if (*sortTimeout == 0 || this->settings->treeView) {
+ if (!this->state->pauseProcessUpdate && (*sortTimeout == 0 || this->settings->treeView)) {
ProcessList_sort(pl);
*sortTimeout = 1;
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy