Fixed submission refresh, changed some coloring.

This commit is contained in:
Michael Lazar
2015-02-11 20:29:02 -08:00
parent c2dc8df29f
commit 1b8b25fd8b
4 changed files with 10 additions and 8 deletions

View File

@@ -148,7 +148,7 @@ class BasePage(object):
n_rows, n_cols = self._header_window.getmaxyx()
self._header_window.erase()
attr = curses.A_REVERSE | curses.A_BOLD | Color.RED
attr = curses.A_REVERSE | curses.A_BOLD | Color.CYAN
self._header_window.addnstr(0, 0, self.content.name, n_cols-1, attr)
self._header_window.refresh()