mirror of
https://github.com/bootandy/dust.git
synced 2026-06-08 11:29:05 +03:00
Fix minor color bug
If we are not using RED then the Color should be the terminal default not 7
This commit is contained in:
+1
-1
@@ -88,7 +88,7 @@ fn main() {
|
||||
let biggest_ones = {
|
||||
match depth {
|
||||
None => find_big_ones(sorted_data, number_of_lines + simplified_dirs.len()),
|
||||
Some(d) => trim_deep_ones(sorted_data, d, &simplified_dirs)
|
||||
Some(d) => trim_deep_ones(sorted_data, d, &simplified_dirs),
|
||||
}
|
||||
};
|
||||
draw_it(permissions, !use_full_path, depth, simplified_dirs, biggest_ones);
|
||||
|
||||
Reference in New Issue
Block a user