Fix bug
This commit is contained in:
parent
74b104fe18
commit
0a8d2eac9b
|
@ -76,12 +76,8 @@ useWhiptail() {
|
||||||
fi
|
fi
|
||||||
width=$(calcWidthWhiptail "$str")
|
width=$(calcWidthWhiptail "$str")
|
||||||
height=$(calcHeightWhiptail "$str")
|
height=$(calcHeightWhiptail "$str")
|
||||||
if [ $inputbox = true ] && [ $width -lt 30 ]; then
|
[ $inputbox = true ] && [ $width -lt 30 ] && width=$((width+5))
|
||||||
width=$((width+5))
|
[ $infobox = true ] && height=$((height-1))
|
||||||
fi
|
|
||||||
if [ $infobox = true ]; then
|
|
||||||
height=$((height-1))
|
|
||||||
fi
|
|
||||||
formatOptions "$@"
|
formatOptions "$@"
|
||||||
if [ "$found" = false ]; then
|
if [ "$found" = false ]; then
|
||||||
height=0; width=0
|
height=0; width=0
|
||||||
|
@ -190,7 +186,7 @@ useDialogMenu() {
|
||||||
|
|
||||||
calcWidthWhiptail() {
|
calcWidthWhiptail() {
|
||||||
width=$(echo "$1" | wc -c)
|
width=$(echo "$1" | wc -c)
|
||||||
[ $count -gt 60 ] && echo 60 || echo $((count+2))
|
[ $count -gt 60 ] && echo 60 || echo $((width+2))
|
||||||
}
|
}
|
||||||
|
|
||||||
calcWidthDialog() {
|
calcWidthDialog() {
|
||||||
|
|
Loading…
Reference in New Issue