From fdf961b97faa7298ac970dff3e745d448e6f6353 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Fri, 31 Dec 2021 17:17:32 -0300 Subject: [PATCH] Update useWhiptail() --- scripts/common.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/common.sh b/scripts/common.sh index d37abe8..a94b819 100644 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -51,7 +51,7 @@ useDialog() { } useWhiptail() { - str="${@: -1}" + str="${@: -1}"; inputbox=false if [ "$str" = "VALUES" ]; then argc="$#"; i=1 for item in "$@"; do @@ -59,11 +59,15 @@ useWhiptail() { str="$item" break fi + [ "$item" = "--inputbox" ] && inputbox=true ((i++)) done fi width=$(calcWidthWhiptail "$str") height=$(calcHeightWhiptail "$str") + if [ $inputbox = true ]; then + width=$((${width}+15)) + fi formatOptions "$@" if [ $found = false ]; then height=0; width=0