Update useDialog()

This commit is contained in:
Santiago Lo Coco 2021-12-31 16:48:54 -03:00
parent 36a37059ec
commit 419884390e
1 changed files with 4 additions and 1 deletions

View File

@ -38,7 +38,10 @@ useDialog() {
fi
width=$(calcWidthDialog "$str")
height=$(calcHeightDialog "$str")
[ $inputbox = true ] && height=$((${height}+2))
if [ $inputbox = true ]; then
width=$((${width}+15))
height=$((${height}+2))
fi
formatOptions "$@"
if [ $found = false ]; then
dialog "$@" ${height} ${width}