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:
andy.boot
2018-06-19 23:39:23 +01:00
parent cab24f58d5
commit 0bf4ebf554
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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);