Fix typo in calcWidthWhiptail()

This commit is contained in:
Santiago Lo Coco 2022-02-01 15:03:25 -03:00
parent 0ea7ce1783
commit c3c312ed9b
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ useDialogMenu() {
calcWidthWhiptail() {
width=$(echo "$1" | wc -c)
[ $count -gt 60 ] && echo 60 || echo $((width+2))
[ $width -gt 60 ] && echo 60 || echo $((width+2))
}
calcWidthDialog() {