From 1eba9f412bbb3d5a0127211ce022c8020e83e8fb Mon Sep 17 00:00:00 2001 From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13" Date: Thu, 5 Aug 2010 20:41:56 +0000 Subject: fix the vertical line color (cyon->blue) --- src/window.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') 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) -- cgit v1.2.3