Update useWhiptail()

This commit is contained in:
Santiago Lo Coco 2021-12-31 17:17:32 -03:00
parent 600531c516
commit fdf961b97f
1 changed files with 5 additions and 1 deletions

View File

@ -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