diff options
author | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-08-05 20:41:56 +0000 |
---|---|---|
committer | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-08-05 20:41:56 +0000 |
commit | 1eba9f412bbb3d5a0127211ce022c8020e83e8fb (patch) | |
tree | 8ebb204c37b80a1e6811e6142241bca97c3de9ac | |
parent | 32398ba5863d84dead3df954f2f1b6d4fcd49022 (diff) | |
download | poezio-1eba9f412bbb3d5a0127211ce022c8020e83e8fb.tar.gz poezio-1eba9f412bbb3d5a0127211ce022c8020e83e8fb.tar.bz2 poezio-1eba9f412bbb3d5a0127211ce022c8020e83e8fb.tar.xz poezio-1eba9f412bbb3d5a0127211ce022c8020e83e8fb.zip |
fix the vertical line color (cyon->blue)
-rw-r--r-- | src/window.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/window.py b/src/window.py index 4616aae1..3419ae2c 100644 --- a/src/window.py +++ b/src/window.py @@ -688,9 +688,9 @@ class Window(object): else: visible = True if visible: - stdscr.attron(curses.color_pair(3)) + stdscr.attron(curses.color_pair(5)) stdscr.vline(1, 9*(self.width/10), curses.ACS_VLINE, self.height-2) - stdscr.attroff(curses.color_pair(3)) + stdscr.attroff(curses.color_pair(5)) self.user_win = UserList(self.height-3, (self.width/10)-1, 1, 9*(self.width/10)+1, stdscr, visible) self.topic_win = Topic(1, self.width, 0, 0, stdscr, visible) self.info_win = RoomInfo(1, self.width, self.height-2, 0, stdscr, visible) @@ -707,9 +707,9 @@ class Window(object): else: visible = True if visible: - stdscr.attron(curses.color_pair(3)) + stdscr.attron(curses.color_pair(5)) stdscr.vline(1, 9*(self.width/10), curses.ACS_VLINE, self.height-2) - stdscr.attroff(curses.color_pair(3)) + stdscr.attroff(curses.color_pair(5)) text_width = (self.width/10)*9; self.topic_win.resize(1, self.width, 0, 0, stdscr, visible) self.info_win.resize(1, self.width, self.height-2, 0, stdscr, visible) |