From 0fabfc4210570014c1f1f4ecc7814f877a653c78 Mon Sep 17 00:00:00 2001 From: RadRussianRus Date: Tue, 1 Oct 2019 03:28:00 +0300 Subject: [PATCH] Remove "Version" word from version in drawer --- Telegram/SourceFiles/window/window_main_menu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/window/window_main_menu.cpp b/Telegram/SourceFiles/window/window_main_menu.cpp index e90d560cd..a5ef50e1a 100644 --- a/Telegram/SourceFiles/window/window_main_menu.cpp +++ b/Telegram/SourceFiles/window/window_main_menu.cpp @@ -205,7 +205,7 @@ MainMenu::MainMenu( qsl("Kotatogram Desktop"), qsl("https://t.me/kotatogram"))); _telegram->setLinksTrusted(); - _version->setRichText(textcmdLink(1, tr::lng_settings_current_version(tr::now, lt_version, currentVersionText())) + QChar(' ') + QChar(8211) + QChar(' ') + textcmdLink(2, tr::lng_menu_about(tr::now))); + _version->setRichText(textcmdLink(1, currentVersionText()) + QChar(' ') + QChar(8211) + QChar(' ') + textcmdLink(2, tr::lng_menu_about(tr::now))); _version->setLink(1, std::make_shared(qsl("https://github.com/kotatogram/kotatogram-desktop"))); _version->setLink(2, std::make_shared([] { Ui::show(Box()); }));