From c3c312ed9b9dce5dd3fbedf43b08b1697c747002 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 1 Feb 2022 15:03:25 -0300 Subject: [PATCH] Fix typo in calcWidthWhiptail() --- scripts/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() {