Accidentally disabled the unicode vote symbols.

This commit is contained in:
Michael Lazar
2015-05-13 00:24:49 -07:00
parent bf2d464081
commit c419a3fd23
4 changed files with 25 additions and 18 deletions

View File

@@ -13,7 +13,7 @@ from .content import SubredditContent
from .helpers import open_browser, open_editor
from .docs import SUBMISSION_FILE
from .history import load_history, save_history
from .curses_helpers import (GOLD, Color, LoadScreen, add_line, get_arrow,
from .curses_helpers import (Color, LoadScreen, add_line, get_arrow, get_gold,
show_notification, prompt_input)
__all__ = ['history', 'SubredditController', 'SubredditPage']
@@ -186,7 +186,7 @@ class SubredditPage(BasePage):
add_line(win, u' {created} {comments} '.format(**data))
if data['gold']:
text, attr = GOLD, (curses.A_BOLD | Color.YELLOW)
text, attr = get_gold()
add_line(win, text, attr=attr)
if data['nsfw']: