Remove first newline in usePlainTextMenu()

This commit is contained in:
Santiago Lo Coco 2022-02-01 15:00:47 -03:00
parent 6cf2f40f92
commit af612d8ee3
1 changed files with 2 additions and 3 deletions

View File

@ -104,8 +104,7 @@ usePlainText() {
--yesno) yesno=true ;;
esac
done
str="${2:2}"
printf "$str\n"
printf "${2:2}\n"
if [ $inputbox = true ]; then
printLine && printf "\n"
read -r readVar
@ -134,7 +133,7 @@ usePlainText() {
usePlainTextMenu() {
clear
shift; printf "$1\n"; shift; shift
shift; printf "${1:2}\n"; shift; shift
local i=1; for item in "$@"; do
echo "$item" | grep -qE '[0-9]+' && continue
printf '%s\n' "$i) $item"