ImagePanel imgPnl = (ImagePanel) cmp;
int width = imgPnl.getBounds().width;
int height = imgPnl.getBounds().height;
SimpleImage img = createPartPreview(pPart, width, height);
imgPnl.setImage(img, imgPnl.getBounds().x, imgPnl.getBounds().y, width);
imgPnl.invalidate();
imgPnl.validate();
pnl.getParent().repaint();
break;
}
}