1
0

support commandline arguments (passing file list only)

This commit is contained in:
Gary Wang
2019-10-01 10:37:14 +08:00
parent ee1aa98e45
commit 841ac28d26
6 changed files with 68 additions and 30 deletions

View File

@@ -50,7 +50,7 @@ void GraphicsScene::showGif(const QString &filepath)
this->clear();
QMovie * movie = new QMovie(filepath);
QLabel * label = new QLabel;
label->setStyleSheet("background-color:white;");
label->setStyleSheet("background-color:rgba(225,255,255,0);");
label->setMovie(movie);
this->addWidget(label);
movie->start();