diff --git a/scripts/common.sh b/scripts/common.sh index 57f4cd5..c6ed013 100755 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -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() {