diff --git a/src/chatmodel.cpp b/src/chatmodel.cpp index 5fba149..74d6493 100644 --- a/src/chatmodel.cpp +++ b/src/chatmodel.cpp @@ -868,8 +868,8 @@ void MainWindow::ContactRequest() { auto d = new QDialog(this); auto connD = new Ui_ConnectionDialog(); connD->setupUi(d); - QMovie *movie1 = new QMovie(":/img/res/silentdragonlite-animated.gif"); - QMovie *movie2 = new QMovie(":/img/res/silentdragonlite-animated-dark.gif"); + QMovie *movie1 = new QMovie(":/img/res/silentdragonlite-animated-startup-dark.gif"); + QMovie *movie2 = new QMovie(":/img/res/silentdragonlite-animated-startup-dark.gif"); auto theme = Settings::getInstance()->get_theme_name(); if (theme == "Dark" || theme == "Midnight") { movie2->setScaledSize(QSize(512,512)); diff --git a/src/connection.cpp b/src/connection.cpp index 0db30a2..0c46f88 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -42,7 +42,7 @@ ConnectionLoader::ConnectionLoader(MainWindow* main, Controller* rpc) connD->topIcon->setMovie(movie2); movie2->start(); } else { - QMovie *movie1 = new QMovie(":/img/res/silentdragonlite-animated-startup.gif");; + QMovie *movie1 = new QMovie(":/img/res/silentdragonlite-animated-startup-dark.gif");; movie1->setScaledSize(size); qDebug() << "Animation light loaded"; connD->topIcon->setMovie(movie1); diff --git a/src/controller.cpp b/src/controller.cpp index 920338d..93867c7 100644 --- a/src/controller.cpp +++ b/src/controller.cpp @@ -2015,15 +2015,15 @@ void Controller::shutdownhushd() connD.topIcon->setMovie(movie2); movie2->start(); connD.status->setText(QObject::tr("Please wait for SilentDragonLite to exit")); - connD.statusDetail->setText(QObject::tr("Please wait for SilentDragonLite to exit")); + connD.statusDetail->setText(QObject::tr("It may take several minutes")); } else { - QMovie *movie1 = new QMovie(":/img/res/silentdragonlite-animated-startup.gif");; + QMovie *movie1 = new QMovie(":/img/res/silentdragonlite-animated-startup-dark.gif");; movie1->setScaledSize(size); qDebug() << "Animation light loaded"; connD.topIcon->setMovie(movie1); movie1->start(); connD.status->setText(QObject::tr("Please wait for SilentDragonLite to exit")); - connD.statusDetail->setText(QObject::tr("Please wait for SilentDragonLite to exit")); + connD.statusDetail->setText(QObject::tr("It may take several minutes")); } bool finished = false; diff --git a/src/sendtab.cpp b/src/sendtab.cpp index 0b0856a..89dba87 100644 --- a/src/sendtab.cpp +++ b/src/sendtab.cpp @@ -845,8 +845,8 @@ void MainWindow::sendButton() { auto d = new QDialog(this); auto connD = new Ui_ConnectionDialog(); connD->setupUi(d); - QMovie *movie1 = new QMovie(":/img/res/silentdragonlite-animated.gif");; - QMovie *movie2 = new QMovie(":/img/res/silentdragonlite-animated-dark.gif");; + QMovie *movie1 = new QMovie(":/img/res/silentdragonlite-animated-startup-dark.gif");; + QMovie *movie2 = new QMovie(":/img/res/silentdragonlite-animated-startup-dark.gif");; auto theme = Settings::getInstance()->get_theme_name(); if (theme == "Dark" || theme == "Midnight") { movie2->setScaledSize(QSize(512,512));