diff options
author | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-08-22 14:57:47 +0000 |
---|---|---|
committer | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-08-22 14:57:47 +0000 |
commit | aab22c794397a29d3a865c073702879a1e5a4645 (patch) | |
tree | df515dbaf722b71dbf764eb1a48c1c61cbe94f69 /src/window.py | |
parent | 3ed25bdfce85e774b6992d32a112b69154d55f3e (diff) | |
download | poezio-aab22c794397a29d3a865c073702879a1e5a4645.tar.gz poezio-aab22c794397a29d3a865c073702879a1e5a4645.tar.bz2 poezio-aab22c794397a29d3a865c073702879a1e5a4645.tar.xz poezio-aab22c794397a29d3a865c073702879a1e5a4645.zip |
Themes working
Diffstat (limited to 'src/window.py')
-rw-r--r-- | src/window.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window.py b/src/window.py index 584f2f8b..dcbb14ab 100644 --- a/src/window.py +++ b/src/window.py @@ -102,7 +102,7 @@ class UserList(Win): except KeyError: show_col = theme.COLOR_STATUS_NONE self.win.attron(curses.color_pair(show_col)) - self.win.addnstr(y, 0, " ", 1) + self.win.addnstr(y, 0, theme.STATUS_CHAR, 1) self.win.attroff(curses.color_pair(show_col)) self.win.attron(curses.color_pair(role_col)) try: @@ -773,8 +773,8 @@ class Window(object): self.topic_win.resize(1, self.width, 0, 0, stdscr, visible) self.info_win.resize(1, self.width, self.height-2, 0, stdscr, visible) self.text_win.resize(self.height-3, text_width, 1, 0, stdscr, visible) - self.input.resize(1, self.width, self.height-1, 0, stdscr, visible) self.user_win.resize(self.height-3, self.width-text_width-1, 1, text_width+1, stdscr, visible) + self.input.resize(1, self.width, self.height-1, 0, stdscr, visible) def refresh(self, rooms): """ |