From 26f084c12afcecbf632bff3c7c4548f49f8ec914 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Mon, 24 Jul 2023 16:55:17 +0200 Subject: [PATCH] Removed the ellipsis from the miximage offline generator GUI 'Running' status message --- es-app/src/guis/GuiOfflineGenerator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-app/src/guis/GuiOfflineGenerator.cpp b/es-app/src/guis/GuiOfflineGenerator.cpp index 5842d9a5e..f90cf8f81 100644 --- a/es-app/src/guis/GuiOfflineGenerator.cpp +++ b/es-app/src/guis/GuiOfflineGenerator.cpp @@ -309,7 +309,7 @@ void GuiOfflineGenerator::update(int deltaTime) } // Update the statistics. - mStatus->setText("RUNNING..."); + mStatus->setText("RUNNING"); mGameCounter->setText(std::to_string(mGamesProcessed) + " OF " + std::to_string(mTotalGames) + (mTotalGames == 1 ? " GAME " : " GAMES ") + "PROCESSED");