mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-26 19:26:59 +03:00
Improve splash screen code
This commit is contained in:
parent
155316c30e
commit
6d241270b5
1 changed files with 2 additions and 2 deletions
|
@ -263,9 +263,9 @@ int main(int argc, char *argv[]){
|
|||
painter.setFont(QFont("Arial", 22, QFont::Black));
|
||||
painter.drawText(224 - painter.fontMetrics().width(version), 270, version);
|
||||
splash = new QSplashScreen(splash_img, Qt::WindowStaysOnTopHint);
|
||||
QTimer::singleShot(1500, splash, SLOT(deleteLater()));
|
||||
splash->show();
|
||||
app.processEvents();
|
||||
QTimer::singleShot(2000, splash, SLOT(deleteLater()));
|
||||
}
|
||||
#endif
|
||||
// Set environment variable
|
||||
|
@ -297,7 +297,7 @@ int main(int argc, char *argv[]){
|
|||
#ifndef DISABLE_GUI
|
||||
MainWindow window(0, torrentCmdLine);
|
||||
if(!no_splash)
|
||||
QObject::connect(splash, SIGNAL(destroyed()), &window, SLOT(raise()));
|
||||
window.raise();
|
||||
QObject::connect(&app, SIGNAL(messageReceived(const QString&)),
|
||||
&window, SLOT(processParams(const QString&)));
|
||||
app.setActivationWindow(&window);
|
||||
|
|
Loading…
Reference in a new issue