From 419884390e489e08a4d6efe3162fdc0e1413a6fe Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Fri, 31 Dec 2021 16:48:54 -0300 Subject: [PATCH] Update useDialog() --- scripts/common.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/common.sh b/scripts/common.sh index f270080..d37abe8 100644 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -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}