Skip to content

Commit 8eef3d1

Browse files
committed
Updater/Message: Fix the message that supposed to tell updated to blabla from blabla, since the updater does not know the current version it's kinda useless.
1 parent 010fb38 commit 8eef3d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/appuiupdate.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ void AppUi::DLManagerRequestFinished(QNetworkReply* reply)
161161
void AppUi::updated(QString fromVersion)
162162
{
163163
QMessageBox::about(nullptr, tr("QUsb2Snes updated succesfully"),
164-
QString(tr("QUsb2Snes successfully updated from %1 to version %2")).arg(fromVersion).arg(qApp->applicationVersion()));
164+
QString(tr("QUsb2Snes successfully updated to version %2")).arg(fromVersion).arg(qApp->applicationVersion()));
165165
if (false == globalSettings->contains("telemetrydatahandled"))
166166
{
167167
QStringList devices;

0 commit comments

Comments
 (0)