# HG changeset patch # User sheepluva # Date 1370438820 -7200 # Node ID 07f3bf8d98a3c5648bdd37e83de66e743fa8bd65 # Parent 19596777eb7a098bd4d8712a67c13c9e7a994493 Hedgewars.png had a resolution more than twice as high as required; also fixed some (mostly obsolete) code that also contained a typo that would cause a warning/note in clang diff -r 19596777eb7a -r 07f3bf8d98a3 QTfrontend/res/Hedgehog.png Binary file QTfrontend/res/Hedgehog.png has changed diff -r 19596777eb7a -r 07f3bf8d98a3 QTfrontend/ui/widget/about.cpp --- a/QTfrontend/ui/widget/about.cpp Wed Jun 05 14:00:29 2013 +0200 +++ b/QTfrontend/ui/widget/about.cpp Wed Jun 05 15:27:00 2013 +0200 @@ -52,11 +52,8 @@ QLabel *imageLabel = new QLabel; QImage image(":/res/Hedgehog.png"); imageLabel->setPixmap(QPixmap::fromImage(image)); - imageLabel->setScaledContents(true); - imageLabel->setMinimumWidth(2.8); - imageLabel->setMaximumWidth(280); - imageLabel->setMinimumHeight(30); - imageLabel->setMaximumHeight(300); + imageLabel->setFixedWidth(273); + imageLabel->setFixedHeight(300); leftLayout->addWidget(imageLabel, 0, Qt::AlignHCenter);