Update calcWidthDialog()

This commit is contained in:
Santiago Lo Coco 2022-01-24 23:50:42 -03:00
parent 722b2016e4
commit cf55e4285e
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ calcWidthWhiptail() {
calcWidthDialog() {
str=$1; count=1; found=false; option=1
for (( i = 0; i < ${#str}; i++ )); do
if [ "${str:$i:1}" = '\' ] && [ "${str:$((i+1)):1}" = 'n' ]; then
if [ "${str:$i:1}" = "\\" ] && [ "${str:$((i+1)):1}" = "n" ]; then
if [ $count -ge $option ]; then
option=$count
fi