reduce default block width to 70
This commit is contained in:
parent
213562ae10
commit
808ff227f1
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in New Issue