Update useWhiptail()
This commit is contained in:
parent
600531c516
commit
fdf961b97f
|
@ -51,7 +51,7 @@ useDialog() {
|
||||||
}
|
}
|
||||||
|
|
||||||
useWhiptail() {
|
useWhiptail() {
|
||||||
str="${@: -1}"
|
str="${@: -1}"; inputbox=false
|
||||||
if [ "$str" = "VALUES" ]; then
|
if [ "$str" = "VALUES" ]; then
|
||||||
argc="$#"; i=1
|
argc="$#"; i=1
|
||||||
for item in "$@"; do
|
for item in "$@"; do
|
||||||
|
@ -59,11 +59,15 @@ useWhiptail() {
|
||||||
str="$item"
|
str="$item"
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
|
[ "$item" = "--inputbox" ] && inputbox=true
|
||||||
((i++))
|
((i++))
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
width=$(calcWidthWhiptail "$str")
|
width=$(calcWidthWhiptail "$str")
|
||||||
height=$(calcHeightWhiptail "$str")
|
height=$(calcHeightWhiptail "$str")
|
||||||
|
if [ $inputbox = true ]; then
|
||||||
|
width=$((${width}+15))
|
||||||
|
fi
|
||||||
formatOptions "$@"
|
formatOptions "$@"
|
||||||
if [ $found = false ]; then
|
if [ $found = false ]; then
|
||||||
height=0; width=0
|
height=0; width=0
|
||||||
|
|
Loading…
Reference in New Issue