mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-11 19:08:40 +00:00
don't trim rows
(basemode seems to get confused on strings with double-wide chars)
This commit is contained in:
parent
b11468c19b
commit
9e4ea0a671
1 changed files with 1 additions and 1 deletions
|
@ -559,7 +559,7 @@ class AllTorrents(BaseMode):
|
||||||
else:
|
else:
|
||||||
colorstr = "{!%s,%s!}"%(fg,bg)
|
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
|
tidx += 1
|
||||||
currow += 1
|
currow += 1
|
||||||
if (currow > (self.rows - 2)):
|
if (currow > (self.rows - 2)):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue