reduce default block width to 70

This commit is contained in:
Gordon Shumway 2019-06-03 14:59:51 -04:00 committed by GitHub
parent 213562ae10
commit 808ff227f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -542,9 +542,9 @@ class ASCII(callbacks.Plugin):
if 'w' in optlist:
cols = optlist.get('w')
elif 'ascii' not in optlist and 'ramp' not in optlist and 'nocolor' not in optlist and 'chars' not in optlist and 'block' not in optlist and 'w' not in optlist:
cols = 75
cols = 70
elif 'w' not in optlist and '1/4' in optlist:
cols = 75
cols = 70
else:
cols = 100
if '1/4' in optlist:
@ -949,7 +949,7 @@ class ASCII(callbacks.Plugin):
w = optlist.get('w')
opts += '-w {0} '.format(w)
else:
opts += '-w 75 '
opts += '-w 70 '
if 'delay' in optlist:
delay = optlist.get('delay')
else: