Tweaked seperators.

This commit is contained in:
Michael Lazar
2016-04-05 23:19:43 -07:00
parent 5165421876
commit 601ed9160f

View File

@@ -58,13 +58,13 @@ class Terminal(object):
@property
def neutral_arrow(self):
symbol = '>' if self.ascii else ''
symbol = 'o' if self.ascii else ''
attr = curses.A_BOLD
return symbol, attr
@property
def timestamp_sep(self):
symbol = 'o' if self.ascii else ''
symbol = '-'
attr = curses.A_BOLD
return symbol, attr