Update useDialog()
This commit is contained in:
parent
36a37059ec
commit
419884390e
|
@ -38,7 +38,10 @@ useDialog() {
|
||||||
fi
|
fi
|
||||||
width=$(calcWidthDialog "$str")
|
width=$(calcWidthDialog "$str")
|
||||||
height=$(calcHeightDialog "$str")
|
height=$(calcHeightDialog "$str")
|
||||||
[ $inputbox = true ] && height=$((${height}+2))
|
if [ $inputbox = true ]; then
|
||||||
|
width=$((${width}+15))
|
||||||
|
height=$((${height}+2))
|
||||||
|
fi
|
||||||
formatOptions "$@"
|
formatOptions "$@"
|
||||||
if [ $found = false ]; then
|
if [ $found = false ]; then
|
||||||
dialog "$@" ${height} ${width}
|
dialog "$@" ${height} ${width}
|
||||||
|
|
Loading…
Reference in New Issue