Remove first newline in usePlainText()

This commit is contained in:
Santiago Lo Coco 2022-02-01 14:59:41 -03:00
parent 0a8d2eac9b
commit 6cf2f40f92
1 changed files with 2 additions and 1 deletions

View File

@ -104,7 +104,8 @@ usePlainText() {
--yesno) yesno=true ;;
esac
done
printf "$2\n"
str="${2:2}"
printf "$str\n"
if [ $inputbox = true ]; then
printLine && printf "\n"
read -r readVar