From 7bd6dd37c20a0206768c5f950d181f3fce7bc0f0 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Mon, 31 Aug 2015 15:44:10 +0200 Subject: Add a COLOR_TIME_STRING theming option --- src/windows/text_win.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/windows') 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): -- cgit v1.2.3