From 877563e9d7600f5cfa63abac6ffd719bb3a84e7d Mon Sep 17 00:00:00 2001 From: Vadim Peretokin Date: Sat, 6 Sep 2025 14:06:40 +0200 Subject: [PATCH] Fix placeholder text --- MudletBootstrap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MudletBootstrap.cpp b/MudletBootstrap.cpp index 6e95b45..2a20bb7 100644 --- a/MudletBootstrap.cpp +++ b/MudletBootstrap.cpp @@ -400,7 +400,7 @@ void MudletBootstrap::onDownloadProgress(qint64 bytesReceived, qint64 bytesTotal .arg(bytesReceived/1048576.0, 0, 'f', 2) .arg(bytesTotal/1048576.0, 0, 'f', 2)); } - statusLabel->setText(QString("Downloading Mudlet for %1...")); + statusLabel->setText(QString("Downloading Mudlet for %1...").arg(gameName)); }