From d66fc9a611472b19b07a2b5144fe3b0908956b47 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Fri, 31 Dec 2021 15:10:18 -0300 Subject: [PATCH] Update useDialog() --- scripts/common.sh | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/scripts/common.sh b/scripts/common.sh index 22b4cdf..900fe2d 100644 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -24,7 +24,26 @@ displayDialogBox() { } useDialog() { - dialog "$@" 9 60 + str="${@: -1}" + if [ "$str" = "VALUES" ]; then + argc="$#"; i=1 + for item in "$@"; do + if [ $i -eq $((${argc}-1)) ]; then + str="$item" + break + fi + ((i++)) + done + fi + width=$(calcWidth "$str") + height=$(calcHeight "$str") + formatOptions "$@" + if [ $found = false ]; then + height=0; width=0 + dialog "$@" ${height} ${width} + else + dialog "${options[@]}" + fi } useWhiptail() {