diff --git a/Telegram/Resources/lang.strings b/Telegram/Resources/lang.strings index 0d30dce6d..01304cfd6 100644 --- a/Telegram/Resources/lang.strings +++ b/Telegram/Resources/lang.strings @@ -28,7 +28,7 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org "lng_open_from_tray" = "Open Telegram"; "lng_minimize_to_tray" = "Minimize to tray"; "lng_quit_from_tray" = "Quit Telegram"; -"lng_tray_icon_text" = "Telegram is still running here,\nyou can change this from settings page.\n\nIf this icon disappears from tray menu,\nyou can drag it back here from hidden icons."; +"lng_tray_icon_text" = "Telegram is still running here,\nyou can change this from settings page.\nIf this icon disappears from tray menu,\nyou can drag it here from hidden icons."; "lng_month1" = "January"; "lng_month2" = "February"; diff --git a/Telegram/SourceFiles/application.cpp b/Telegram/SourceFiles/application.cpp index 8f14416b8..d4c43461f 100644 --- a/Telegram/SourceFiles/application.cpp +++ b/Telegram/SourceFiles/application.cpp @@ -660,7 +660,7 @@ void Application::checkMapVersion() { QString versionFeatures; if (cDevVersion() && Local::oldMapVersion() < 8044) { versionFeatures = QString::fromUtf8("\xe2\x80\x94 Sending media and recording audio status display");// .replace('@', qsl("@") + QChar(0x200D)); - } else if (!cDevVersion() && Local::oldMapVersion() < 8043) { + } else if (!cDevVersion() && Local::oldMapVersion() < 8045) { versionFeatures = lang(lng_new_version_minor).trimmed(); } if (!versionFeatures.isEmpty()) { diff --git a/Telegram/SourceFiles/pspecific_linux.cpp b/Telegram/SourceFiles/pspecific_linux.cpp index 9d0b6c44e..3dda4bfd1 100644 --- a/Telegram/SourceFiles/pspecific_linux.cpp +++ b/Telegram/SourceFiles/pspecific_linux.cpp @@ -356,7 +356,7 @@ namespace { inited = true; QString cdesktop = QString(getenv("XDG_CURRENT_DESKTOP")).toLower(); - noQtTrayIcon = (cdesktop == qstr("pantheon"));// || (cdesktop == qstr("gnome")); + noQtTrayIcon = (cdesktop == qstr("pantheon")) || (cdesktop == qstr("gnome")); noTryUnity = (cdesktop != qstr("unity")); if (noQtTrayIcon) cSetSupportTray(false); diff --git a/Telegram/SourceFiles/pspecific_wnd.cpp b/Telegram/SourceFiles/pspecific_wnd.cpp index 15ab2bf9d..a7ad89a93 100644 --- a/Telegram/SourceFiles/pspecific_wnd.cpp +++ b/Telegram/SourceFiles/pspecific_wnd.cpp @@ -214,7 +214,8 @@ namespace { if (max_h < st::wndMinHeight) max_h = st::wndMinHeight; HINSTANCE appinst = (HINSTANCE)GetModuleHandle(0); - + HWND hwnd = Application::wnd() ? Application::wnd()->psHwnd() : 0; + for (int i = 0; i < 4; ++i) { QString cn = QString("TelegramShadow%1").arg(i); LPCWSTR _cn = (LPCWSTR)cn.utf16(); @@ -244,6 +245,9 @@ namespace { destroy(); return false; } +// if (QSysInfo::windowsVersion() >= QSysInfo::WV_WINDOWS8) { + SetWindowLong(hwnds[i], GWL_HWNDPARENT, (LONG)hwnd); +// } dcs[i] = CreateCompatibleDC(screenDC); if (!dcs[i]) {