mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Avoid scaling null pixmap to avoid warning message
This commit is contained in:
parent
9642a54d04
commit
2e8ee43267
@ -678,8 +678,11 @@ bool Machine::Load(ProgressDialog *progress)
|
||||
return false;
|
||||
}
|
||||
|
||||
QPixmap image = getPixmap().scaled(64,64);
|
||||
progress->setPixmap(image);
|
||||
QPixmap image = getPixmap();
|
||||
if (!image.isNull()) {
|
||||
image = image.scaled(64,64);
|
||||
progress->setPixmap(image);
|
||||
}
|
||||
progress->setMessage(QObject::tr("Loading %1 data for %2...").arg(info.brand).arg(profile->user->userName()));
|
||||
|
||||
if (loader()) {
|
||||
|
Loading…
Reference in New Issue
Block a user