mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
dont show 0.0kbps by Arnab
This commit is contained in:
parent
dbbace5f23
commit
557d90987c
1 changed files with 2 additions and 1 deletions
|
@ -43,7 +43,8 @@ import gtk
|
|||
|
||||
def cell_data_speed(column, cell, model, iter, data):
|
||||
speed = int(model.get_value(iter, data))
|
||||
speed_str = common.fspeed(speed)
|
||||
if speed<100: speed_str = ""
|
||||
else: speed_str = common.fspeed(speed)
|
||||
cell.set_property('text', speed_str)
|
||||
|
||||
def cell_data_size(column, cell, model, iter, data):
|
||||
|
|
Loading…
Add table
Reference in a new issue