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