Commit 19a6357c authored by Dylan Araps's avatar Dylan Araps

Image: Fix issue where '--image ascii' didn't work

parent 4b4426f3
...@@ -3169,7 +3169,7 @@ get_args() { ...@@ -3169,7 +3169,7 @@ get_args() {
# Image # Image
"--image") "--image")
image_source="$2" image_source="$2"
case "$2" in "-"* | "") image_backend="ascii" ;; esac case "$2" in "-"* | "" | "ascii") image_backend="ascii" ;; esac
;; ;;
"--image_size" | "--size") image_size="$2" ;; "--image_size" | "--size") image_size="$2" ;;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment