From 72ea16b5e7fe4639df58605cbcff90f2bb627823 Mon Sep 17 00:00:00 2001 From: Alexey Minnekhanov Date: Thu, 15 Feb 2018 18:24:33 +0300 Subject: [PATCH] Try to fix windows-specific file --- Telegram/SourceFiles/platform/win/main_window_win.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/platform/win/main_window_win.cpp b/Telegram/SourceFiles/platform/win/main_window_win.cpp index e99f7a6e6..9527f8db7 100644 --- a/Telegram/SourceFiles/platform/win/main_window_win.cpp +++ b/Telegram/SourceFiles/platform/win/main_window_win.cpp @@ -685,7 +685,7 @@ void MainWindow::psSetupTrayIcon() { void MainWindow::showTrayTooltip() { if (trayIcon && !cSeenTrayTooltip()) { - trayIcon->showMessage(str_const_toString(AppName), lang(lng_tray_icon_text), QSystemTrayIcon::Information, 10000); + trayIcon->showMessage(str_const_toString(AppName), lng_tray_icon_text(lt_appname, lang(appname)), QSystemTrayIcon::Information, 10000); cSetSeenTrayTooltip(true); Local::writeSettings(); }