don't trim rows

(basemode seems to get confused on strings with double-wide chars)
This commit is contained in:
Nick Lanham 2011-02-22 17:18:12 +01:00
parent b11468c19b
commit 9e4ea0a671
1 changed files with 1 additions and 1 deletions

View File

@ -559,7 +559,7 @@ class AllTorrents(BaseMode):
else:
colorstr = "{!%s,%s!}"%(fg,bg)
self.add_string(currow,"%s%s"%(colorstr,row[0]))
self.add_string(currow,"%s%s"%(colorstr,row[0]),trim=False)
tidx += 1
currow += 1
if (currow > (self.rows - 2)):