mirror of
https://github.com/Llewellynvdm/exa.git
synced 2025-04-05 06:51:51 +00:00
Merge pull request #784 from ariasuni/fix-icons-not-showing-right-in-konsole
Use same styling for spaces between icon and file name
This commit is contained in:
commit
3c69169993
@ -132,9 +132,9 @@ impl<'a, 'dir, C: Colours> FileName<'a, 'dir, C> {
|
|||||||
bits.push(style.paint(file_icon));
|
bits.push(style.paint(file_icon));
|
||||||
|
|
||||||
match spaces_count {
|
match spaces_count {
|
||||||
1 => bits.push(Style::default().paint(" ")),
|
1 => bits.push(style.paint(" ")),
|
||||||
2 => bits.push(Style::default().paint(" ")),
|
2 => bits.push(style.paint(" ")),
|
||||||
n => bits.push(Style::default().paint(spaces(n))),
|
n => bits.push(style.paint(spaces(n))),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user