Colors and icons.

This commit is contained in:
Sergey Vartanov 2015-08-05 00:48:51 +03:00
parent e408d537ee
commit 1c2b75d1e7
4 changed files with 383 additions and 90 deletions

2
ui.py
View file

@ -33,6 +33,8 @@ def parse_options(args):
options['show_missed_tags'] = False
elif arg in ['--overlap']:
options['overlap'] = int(next(args))
elif arg in ['-s', '--size']:
options['size'] = map(lambda x: float(x), next(args).split(','))
else:
print 'Unknown option: ' + arg
return None