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:
Juerd Waalboer 2023-12-26 05:41:42 +01:00
parent 09411bb6c0
commit 3670a72c31

View file

@ -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),