This commit is contained in:
Michael Lazar
2015-04-16 19:17:40 -07:00
3 changed files with 9 additions and 0 deletions

View File

@@ -267,4 +267,8 @@ class SubmissionPage(BasePage):
text, attr = GOLD, (curses.A_BOLD | Color.YELLOW)
win.addnstr(text, n_cols - win.getyx()[1], attr)
if data['nsfw']:
text, attr = 'NSFW', (curses.A_BOLD | Color.RED)
win.addnstr(text, n_cols - win.getyx()[1], attr)
win.border()