Fix w3m-img being used even when images were off

This commit is contained in:
Dylan Araps 2016-10-24 08:53:54 +11:00
parent 1993f22ec6
commit c869e81e3b
1 changed files with 8 additions and 4 deletions

View File

@ -3381,11 +3381,15 @@ main() {
# Print the info
printinfo
[ "$image" != "off" ] && dynamicprompt
# w3m-img: Draw the image a second time to fix
# rendering issues in specific terminal emulators.
[ "$image_backend" == "w3m" ] && displayimage
# Prompt calculation
if [ "$image" != "off" ]; then
dynamicprompt
# w3m-img: Draw the image a second time to fix
# rendering issues in specific terminal emulators.
[ "$image_backend" == "w3m" ] && displayimage
fi
# Re-enable line wrap
printf "%b%s" "\033[?7h"