diff --git a/rtv/terminal.py b/rtv/terminal.py index bd62cff..3d2f784 100644 --- a/rtv/terminal.py +++ b/rtv/terminal.py @@ -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