Check for passwordbox
This commit is contained in:
parent
656bc8e522
commit
b2978df02e
|
@ -34,7 +34,7 @@ displayDialogBox() {
|
||||||
}
|
}
|
||||||
|
|
||||||
useDialog() {
|
useDialog() {
|
||||||
str=$(getLastArgument "$@"); inputbox=false
|
str=$(getLastArgument "$@"); inputbox=false; passwordbox=false
|
||||||
if [ "$str" = "VALUES" ]; then
|
if [ "$str" = "VALUES" ]; then
|
||||||
argc="$#"; i=1
|
argc="$#"; i=1
|
||||||
for item in "$@"; do
|
for item in "$@"; do
|
||||||
|
@ -43,12 +43,13 @@ useDialog() {
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
[ "$item" = "--inputbox" ] && inputbox=true
|
[ "$item" = "--inputbox" ] && inputbox=true
|
||||||
|
[ "$item" = "--passwordbox" ] && passwordbox=true
|
||||||
((i++))
|
((i++))
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
width=$(calcWidthDialog "$str")
|
width=$(calcWidthDialog "$str")
|
||||||
height=$(calcHeightDialog "$str")
|
height=$(calcHeightDialog "$str")
|
||||||
if [ $inputbox = true ]; then
|
if [ $inputbox = true ] || [ $passwordbox = true ]; then
|
||||||
width=$((width+15))
|
width=$((width+15))
|
||||||
height=$((height+2))
|
height=$((height+2))
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue