mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-29 20:56:31 +00:00
dont show 0.0kbps by Arnab
This commit is contained in:
parent
dbbace5f23
commit
557d90987c
@ -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…
x
Reference in New Issue
Block a user