summaryrefslogtreecommitdiff
path: root/src/windows.py
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2011-01-11 02:49:43 +0100
committerFlorent Le Coz <louiz@louiz.org>2011-01-11 02:49:43 +0100
commit5d4b0a9e2bfc0b8be9df9043dd2527600b619487 (patch)
tree76217ef875b6b125632c278190cd9d637d27291f /src/windows.py
parent9a81b923e6748086f468ff255a4fe1d9ba892ec1 (diff)
downloadpoezio-5d4b0a9e2bfc0b8be9df9043dd2527600b619487.tar.gz
poezio-5d4b0a9e2bfc0b8be9df9043dd2527600b619487.tar.bz2
poezio-5d4b0a9e2bfc0b8be9df9043dd2527600b619487.tar.xz
poezio-5d4b0a9e2bfc0b8be9df9043dd2527600b619487.zip
Move the Contact Window in the left part of the roster tab
Diffstat (limited to 'src/windows.py')
-rw-r--r--src/windows.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/windows.py b/src/windows.py
index 5ac3c5e3..0268bef0 100644
--- a/src/windows.py
+++ b/src/windows.py
@@ -1314,8 +1314,7 @@ class ContactInfoWin(Win):
presence = resource.get_presence()
else:
presence = 'unavailable'
- self.addstr(0, 0, jid, curses.color_pair(theme.COLOR_INFORMATION_BAR))
- self.addstr(' (%s)'%(presence,), curses.color_pair(theme.COLOR_INFORMATION_BAR))
+ self.addstr(0, 0, '%s (%s)'%(jid, presence,), curses.color_pair(theme.COLOR_INFORMATION_BAR))
self.finish_line(theme.COLOR_INFORMATION_BAR)
def draw_group_info(self, group):