summaryrefslogtreecommitdiffstats
path: root/src/aggregate.rs
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2024-01-17 10:20:05 +0100
committerSebastian Thiel <sebastian.thiel@icloud.com>2024-01-17 10:20:05 +0100
commitbed351ed2190e50e2932278b9b13b83c2969401b (patch)
tree808958e942afdb79d6105c93f5cdc045197c7a03 /src/aggregate.rs
parent1a54d95bd6e60bd5b071c772324c7a8540d250f6 (diff)
parent18a725dc5af97841afd06dcd4c8469e1d7ea873c (diff)
feat: Press `r` or `R` for refresh (#96)
Lower-case `r` will refresh the currently selected entry, while upper-case `R` will refresh the entire displayed directory, and all entries in it. Further, what was called `item` is now called `entry` across the user-interface.
Diffstat (limited to 'src/aggregate.rs')
-rw-r--r--src/aggregate.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aggregate.rs b/src/aggregate.rs
index ec4d5ae..356a1a9 100644
--- a/src/aggregate.rs
+++ b/src/aggregate.rs
@@ -41,7 +41,7 @@ pub fn aggregate(
continue;
}
};
- for entry in walk_options.iter_from_path(path.as_ref(), device_id) {
+ for entry in walk_options.iter_from_path(path.as_ref(), device_id, false) {
stats.entries_traversed += 1;
progress.throttled(|| {
if let Some(err) = err.as_mut() {