From 81b2e4e07da3772b9517c8ec609c25f2875045f6 Mon Sep 17 00:00:00 2001 From: Gustavo Neves Date: Mon, 15 May 2017 06:56:10 -0300 Subject: [PATCH] making inches floating to 1 decimal precison to correlate to the defined tables --- pdfScale.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdfScale.sh b/pdfScale.sh index 5f56f60..2f4d085 100755 --- a/pdfScale.sh +++ b/pdfScale.sh @@ -973,7 +973,7 @@ pointsToMilimeters() { # Prints the inches equivalent from $1 postscript points pointsToInches() { local pts=$(echo "scale=8; $1 / 72" | "$BCBIN") - printf '%.2f' "$pts" # Print rounded conversion + printf '%.1f' "$pts" # Print rounded conversion }