diff --git a/canto_curses/story.py b/canto_curses/story.py index 2fb2b8e..baa0093 100644 --- a/canto_curses/story.py +++ b/canto_curses/story.py @@ -118,9 +118,9 @@ class Story(): lines = 0 - left = u"%C%1│%0 %c" - left_more = u"%C%1│%0 %c" - right = u"%C %1│%0%c" + left = u"%C%1%0 %c" + left_more = u"%C%1%0 %c" + right = u"%C %1%0%c" try: while s: diff --git a/canto_curses/tag.py b/canto_curses/tag.py index 6cf0361..c30d2ea 100644 --- a/canto_curses/tag.py +++ b/canto_curses/tag.py @@ -78,7 +78,7 @@ class Tag(list): lines = 0 while header: - header = theme_print(pad, header, mwidth, u"│", u"│") + header = theme_print(pad, header, mwidth, u"", u"") lines += 1 return lines