Remove first newline in usePlainTextMenu()
This commit is contained in:
parent
6cf2f40f92
commit
af612d8ee3
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue