Check for passwordbox

This commit is contained in:
Santiago Lo Coco 2022-02-01 15:48:59 -03:00
parent 656bc8e522
commit b2978df02e
1 changed files with 3 additions and 2 deletions

View File

@ -34,7 +34,7 @@ displayDialogBox() {
}
useDialog() {
str=$(getLastArgument "$@"); inputbox=false
str=$(getLastArgument "$@"); inputbox=false; passwordbox=false
if [ "$str" = "VALUES" ]; then
argc="$#"; i=1
for item in "$@"; do
@ -43,12 +43,13 @@ useDialog() {
break
fi
[ "$item" = "--inputbox" ] && inputbox=true
[ "$item" = "--passwordbox" ] && passwordbox=true
((i++))
done
fi
width=$(calcWidthDialog "$str")
height=$(calcHeightDialog "$str")
if [ $inputbox = true ]; then
if [ $inputbox = true ] || [ $passwordbox = true ]; then
width=$((width+15))
height=$((height+2))
fi