summaryrefslogtreecommitdiff
path: root/src/windows.py
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2012-01-26 10:08:43 +0100
committerFlorent Le Coz <louiz@louiz.org>2012-01-26 10:08:43 +0100
commit7433510470beaa8f009a14d57952133e7dff82b0 (patch)
tree7062b30aa6ed68074c08b21e1550dd35409147a3 /src/windows.py
parenta3344b11b2ea7ac17097b8db4b703bb9f6c02912 (diff)
parent17fdd5d60618ebc1e84a966b89e57c43fc6dd53a (diff)
downloadpoezio-7433510470beaa8f009a14d57952133e7dff82b0.tar.gz
poezio-7433510470beaa8f009a14d57952133e7dff82b0.tar.bz2
poezio-7433510470beaa8f009a14d57952133e7dff82b0.tar.xz
poezio-7433510470beaa8f009a14d57952133e7dff82b0.zip
Merge branch 'master' of https://git.louiz.org/poezio
Conflicts: src/theming.py src/windows.py
Diffstat (limited to 'src/windows.py')
-rw-r--r--src/windows.py12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/windows.py b/src/windows.py
index 7d9194b2..3a852ebc 100644
--- a/src/windows.py
+++ b/src/windows.py
@@ -196,10 +196,10 @@ class UserList(Win):
'none': lambda: get_theme().COLOR_USER_NONE,
'': lambda: get_theme().COLOR_USER_NONE
}
- self.symbol_affiliation = {'owner': '~',
- 'admin': '&',
- 'member': '+',
- 'none': '-'}
+ self.symbol_affiliation = {'owner': lambda: get_theme().CHAR_AFFILIATION_OWNER,
+ 'admin': lambda: get_theme().CHAR_AFFILIATION_ADMIN,
+ 'member': lambda: get_theme().CHAR_AFFILIATION_MEMBER,
+ 'none': lambda: get_theme().CHAR_AFFILIATION_NONE, }
self.color_show = {'xa': lambda: get_theme().COLOR_STATUS_XA,
'none': lambda: get_theme().COLOR_STATUS_NONE,
'': lambda: get_theme().COLOR_STATUS_NONE,
@@ -245,7 +245,7 @@ class UserList(Win):
color = get_theme().COLOR_USER_NONE
else:
color = self.color_role[user.role]()
- symbol = self.symbol_affiliation.get(user.affiliation) or '-'
+ symbol = self.symbol_affiliation.get(user.affiliation, lambda: '-')()
self.addstr(y, 1, symbol, to_curses_attr(color))
def draw_status_chatstate(self, y, user):
@@ -1667,8 +1667,6 @@ class ListWin(Win):
if not lines:
return
self.lines += lines
- self.refresh()
- curses.doupdate()
def get_selected_row(self):
"""