Fix padding not working in some systems
This commit is contained in:
parent
5729d33cb5
commit
4f068c4f4c
2
fetch
2
fetch
|
@ -2121,7 +2121,7 @@ if [ "$image" != "off" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Display the image if enabled
|
# Display the image if enabled
|
||||||
if [ "$image" != "off" ] || [ "$image" != "ascii" ]; then
|
if [ "$image" != "off" ] && [ "$image" != "ascii" ]; then
|
||||||
case "$image_backend" in
|
case "$image_backend" in
|
||||||
"w3m")
|
"w3m")
|
||||||
printf "%b%s\n" "0;1;$xoffset;$yoffset;$imgsize;$imgsize;;;;;$img\n4;\n3;" |\
|
printf "%b%s\n" "0;1;$xoffset;$yoffset;$imgsize;$imgsize;;;;;$img\n4;\n3;" |\
|
||||||
|
|
Reference in New Issue