Qt: fix some grid images not drawing properly

This commit is contained in:
Brad Parker 2018-05-03 17:35:13 -04:00
parent c10e65e99e
commit 6cab8cf139

View File

@ -2803,7 +2803,10 @@ void MainWindow::onDeferredImageLoaded()
GridItem *item = watcher->result();
if (!item->image.isNull())
{
item->label->setPixmap(QPixmap::fromImage(item->image));
item->label->update();
}
}
void MainWindow::loadImageDeferred(GridItem *item, QString path)