}
}
// @see org.gudy.azureus2.ui.swt.views.table.TableCellSWTPaintListener#cellPaint(org.eclipse.swt.graphics.GC, org.gudy.azureus2.ui.swt.views.table.TableCellSWT)
public void cellPaint(GC gcImage, TableCellSWT cell) {
DeviceOfflineDownload od = (DeviceOfflineDownload) cell.getDataSource();
Rectangle bounds = cell.getBounds();
int yOfs = (bounds.height - 13) / 2 ;
int x1 = bounds.width - borderWidth - 2;
int y1 = bounds.height - 3 - yOfs;
if (x1 < 10 || y1 < 3) {
return;
}
if ( !od.isTransfering()){
gcImage.fillRectangle( bounds );
return;
}