This commit is contained in:
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 2010-08-05 22:54:57 +00:00
parent dc80a2288e
commit 8134d06d32

View file

@ -129,8 +129,12 @@ class Topic(Win):
self.win.erase() self.win.erase()
if not jid: if not jid:
try: try:
self.win.addnstr(0, 0, topic + " "*(self.width-len(topic)), self.width self.win.addstr(0, 0, topic, curses.color_pair(1))
, curses.color_pair(1)) while True:
try:
self.win.addch(' ', curses.color_pair(1))
except:
break
except: except:
pass pass
elif jid: elif jid: