From 8b89f327247e44d7c5aff32d14ba178c7f092211 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 15 Feb 2022 19:37:34 -0300 Subject: [PATCH] Fix typo --- scripts/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/common.sh b/scripts/common.sh index 0699928..bc9f97b 100755 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -222,7 +222,7 @@ calcHeightWhiptail() { calcHeightDialog() { newlines=$(echo -ne "$1" | grep -c $'\n') strlen=$((${#1}-1)) - width=$(($3-4)) + width=$(($2-4)) height=$(echo "$strlen" "$((newlines-1))" "$width" | awk '{ z = ($1 - $2) / $3 y = (z == int(z)) ? int(z) : int(z) + 1