From 5936d3f1108e2835cff8a7b3b298f5b80f41d730 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sun, 15 Sep 2019 04:56:54 +0530 Subject: [PATCH] Disable du on detail mode switch --- src/nnn.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nnn.c b/src/nnn.c index 5ae40d18..5c086e38 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -3917,6 +3917,7 @@ nochange: case SEL_DETAIL: cfg.showdetail ^= 1; cfg.showdetail ? (printptr = &printent_long) : (printptr = &printent); + cfg.blkorder = 0; continue; case SEL_FSIZE: cfg.sizeorder ^= 1;