mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 12:07:46 +00:00
Merge pull request #3480 from cakebaker/set_min_width_for_used_column
df: set min width of "Used" column to 5
This commit is contained in:
commit
e06fe3c8f8
1 changed files with 1 additions and 0 deletions
|
@ -197,6 +197,7 @@ impl Column {
|
||||||
match column {
|
match column {
|
||||||
// 14 = length of "Filesystem" plus 4 spaces
|
// 14 = length of "Filesystem" plus 4 spaces
|
||||||
Self::Source => 14,
|
Self::Source => 14,
|
||||||
|
Self::Used => 5,
|
||||||
// the shortest headers have a length of 4 chars so we use that as the minimum width
|
// the shortest headers have a length of 4 chars so we use that as the minimum width
|
||||||
_ => 4,
|
_ => 4,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue