From bbc19fcb4463d3f9709b0fbbc25c15646896cbc0 Mon Sep 17 00:00:00 2001 From: RadRussianRus Date: Sat, 28 Sep 2019 04:42:15 +0300 Subject: [PATCH] Shorten version string to fit --- Telegram/SourceFiles/boxes/about_box.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/boxes/about_box.cpp b/Telegram/SourceFiles/boxes/about_box.cpp index 4cf06d7c7..bbcde5961 100644 --- a/Telegram/SourceFiles/boxes/about_box.cpp +++ b/Telegram/SourceFiles/boxes/about_box.cpp @@ -146,6 +146,6 @@ QString currentVersionText() { } else if (AppBetaVersion) { result += " beta"; } - result += qsl(" (TDesktop %1)").arg(AppVersionStr); + result += qsl(" (TD %1)").arg(AppVersionStr); return result; }