From 0a8d2eac9b50bab1db27f67fac221cf17344ed48 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 1 Feb 2022 14:48:37 -0300 Subject: [PATCH] Fix bug --- scripts/common.sh | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/scripts/common.sh b/scripts/common.sh index eef02dc..1b13ada 100755 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -76,12 +76,8 @@ useWhiptail() { fi width=$(calcWidthWhiptail "$str") height=$(calcHeightWhiptail "$str") - if [ $inputbox = true ] && [ $width -lt 30 ]; then - width=$((width+5)) - fi - if [ $infobox = true ]; then - height=$((height-1)) - fi + [ $inputbox = true ] && [ $width -lt 30 ] && width=$((width+5)) + [ $infobox = true ] && height=$((height-1)) formatOptions "$@" if [ "$found" = false ]; then height=0; width=0 @@ -190,7 +186,7 @@ useDialogMenu() { calcWidthWhiptail() { width=$(echo "$1" | wc -c) - [ $count -gt 60 ] && echo 60 || echo $((count+2)) + [ $count -gt 60 ] && echo 60 || echo $((width+2)) } calcWidthDialog() {