Fix typo in calcWidthWhiptail()
This commit is contained in:
parent
0ea7ce1783
commit
c3c312ed9b
|
@ -190,7 +190,7 @@ useDialogMenu() {
|
|||
|
||||
calcWidthWhiptail() {
|
||||
width=$(echo "$1" | wc -c)
|
||||
[ $count -gt 60 ] && echo 60 || echo $((width+2))
|
||||
[ $width -gt 60 ] && echo 60 || echo $((width+2))
|
||||
}
|
||||
|
||||
calcWidthDialog() {
|
||||
|
|
Loading…
Reference in New Issue