Load croped image from Wizard images. fixes display issue

When resizing image to fit the BigCard panel, scale it to fit width.
The result is better.
This commit is contained in:
North 2011-06-14 22:13:22 +03:00
parent f539d9d5ec
commit 1f72804968
11 changed files with 53 additions and 46 deletions

View file

@ -277,6 +277,7 @@ public class BigCard extends JComponent {
public void setDefaultImage() {
bigImage = ImageHelper.getImageFromResources("/empty.png");
// XXX: scaled to fit width
bigImage = ImageHelper.getResizedImage((BufferedImage) bigImage, getWidth(), getHeight());
}