Image mode (MacOS): Fixed garbage letter appeared in iTerm2

This commit is contained in:
Muhammad Herdiansyah 2017-12-03 19:52:03 +07:00
parent 045577653c
commit fe9933f544
1 changed files with 2 additions and 2 deletions

View File

@ -3003,7 +3003,7 @@ prin() {
string="${subtitle_color}${bold}${string}" string="${subtitle_color}${bold}${string}"
# Print the info. # Print the info.
printf "%b\n" "${text_padding:+\033[${text_padding}C}${zws}${string}${reset}" printf "%b\n" "${text_padding:+\033[${text_padding}C}${zws}${string}${reset} "
# Calculate info height. # Calculate info height.
((++info_height)) ((++info_height))
@ -3016,7 +3016,7 @@ get_underline() {
if [[ "$underline_enabled" == "on" ]]; then if [[ "$underline_enabled" == "on" ]]; then
printf -v underline "%${length}s" printf -v underline "%${length}s"
printf "%b%b\n" "${text_padding:+\033[${text_padding}C}${zws}${underline_color}" \ printf "%b%b\n" "${text_padding:+\033[${text_padding}C}${zws}${underline_color}" \
"${underline// /$underline_char}${reset}" "${underline// /$underline_char}${reset} "
unset -v length unset -v length
fi fi
prin=1 prin=1