diff --git a/src/gui/mainwindow.cpp b/src/gui/mainwindow.cpp index 4abba63a6..c32ed61c0 100644 --- a/src/gui/mainwindow.cpp +++ b/src/gui/mainwindow.cpp @@ -1835,9 +1835,11 @@ void MainWindow::handleUpdateCheckFinished(bool updateAvailable, QString newVers { QMessageBox::StandardButton answer = QMessageBox::Yes; if (updateAvailable) { - answer = QMessageBox::question(this, tr("qBittorrent Update Available"), - tr("A new version is available.\nDo you want to download %1?").arg(newVersion), - QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes); + answer = QMessageBox::question(this, tr("qBittorrent Update Available") + , tr("A new version is available.") + "
" + + tr("Do you want to download %1?").arg(newVersion) + "

" + + QString("%1").arg(tr("Open changelog...")) + , QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes); if (answer == QMessageBox::Yes) { // The user want to update, let's download the update ProgramUpdater *updater = dynamic_cast(sender());