dont show 0.0kbps by Arnab

This commit is contained in:
Marcos Pinto 2007-10-25 01:10:20 +00:00
parent dbbace5f23
commit 557d90987c
1 changed files with 2 additions and 1 deletions

View File

@ -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):