summaryrefslogtreecommitdiff
path: root/src/windows/text_win.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/windows/text_win.py')
-rw-r--r--src/windows/text_win.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/windows/text_win.py b/src/windows/text_win.py
index 59c5230b..970bd1f8 100644
--- a/src/windows/text_win.py
+++ b/src/windows/text_win.py
@@ -102,7 +102,11 @@ class BaseTextWin(Win):
Write the date on the yth line of the window
"""
if time:
+ color = get_theme().COLOR_TIME_STRING
+ curses_color = to_curses_attr(color)
+ self._win.attron(curses_color)
self.addstr(time)
+ self._win.attroff(curses_color)
self.addstr(' ')
def resize(self, height, width, y, x, room=None):