Skip to content

Commit 7b739b6

Browse files
Daniel LangeBenBE
authored andcommitted
Fix pause mode ("Z") in tree view
1 parent ded9c5d commit 7b739b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ScreenManager.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ static void checkRecalculation(ScreenManager* this, double* oldTime, int* sortTi
106106
if (*rescan) {
107107
*oldTime = newTime;
108108
ProcessList_scan(pl, this->state->pauseProcessUpdate);
109-
if (*sortTimeout == 0 || this->settings->treeView) {
109+
if (!this->state->pauseProcessUpdate && (*sortTimeout == 0 || this->settings->treeView)) {
110110
ProcessList_sort(pl);
111111
*sortTimeout = 1;
112112
}

0 commit comments

Comments
 (0)