Fix padding
Somehow the %8s for the amount got turned into %6s in commit ef5babd3
,
which should only have changed the padding for the quantity.
This commit is contained in:
parent
09411bb6c0
commit
3670a72c31
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ sub as_printable($self) {
|
|||
# numbers. Here, the implied sign is "-", and a "+" is only added for
|
||||
# positive numbers.
|
||||
my $q = $self->{quantity};
|
||||
push @s, sprintf "%s%-4s%s" . "%s%6s%s" . " " . "%s%s%s",
|
||||
push @s, sprintf "%s%-4s%s" . "%s%8s%s" . " " . "%s%s%s",
|
||||
($self->{highlight} || $self->{highlight_quantity} ? $HI : $LO),
|
||||
($q > 1 || $self->{highlight_quantity} ? "${q}x" : ""),
|
||||
($self->{highlight} ? "" : $END),
|
||||
|
|
Loading…
Add table
Reference in a new issue