Update calcWidth()

This commit is contained in:
Santiago Lo Coco 2022-01-29 13:25:48 -03:00
parent b5718a4e4b
commit 7afe6358c1
1 changed files with 1 additions and 1 deletions

View File

@ -362,7 +362,7 @@ calcWidth() {
fi
((count++))
done < <(echo -ne "$1")
[ $option -ge $count ] && count=option
[ $option -ge "$count" ] && count=option
echo $((count+4))
}