fix: memory leak when switching between animated image files

This commit is contained in:
Gary Wang
2021-05-21 00:04:22 +08:00
parent 8b86fb1434
commit 71e8df3107
2 changed files with 2 additions and 2 deletions

View File

@ -51,8 +51,8 @@ void GraphicsScene::showSvg(const QString &filepath)
void GraphicsScene::showAnimated(const QString &filepath)
{
this->clear();
QMovie * movie = new QMovie(filepath);
QLabel * label = new QLabel;
QMovie * movie = new QMovie(filepath, QByteArray(), label);
label->setStyleSheet("background-color:rgba(225,255,255,0);");
label->setMovie(movie);
this->addWidget(label);