mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-04-01 23:00:58 +00:00
Fixed window activation by clicking on tray icon for macOS.
This commit is contained in:
parent
546dfb08ef
commit
c47140c62d
@ -464,8 +464,8 @@ void Application::clearEmojiSourceImages() {
|
||||
}
|
||||
|
||||
bool Application::isActiveForTrayMenu() const {
|
||||
if (_primaryWindow) {
|
||||
return _primaryWindow->widget()->isActiveForTrayMenu();
|
||||
if (_primaryWindow && _primaryWindow->widget()->isActiveForTrayMenu()) {
|
||||
return true;
|
||||
}
|
||||
return ranges::any_of(ranges::views::values(_secondaryWindows), [=](
|
||||
const std::unique_ptr<Window::Controller> &controller) {
|
||||
|
@ -81,6 +81,15 @@ namespace Platform {
|
||||
|
||||
namespace {
|
||||
|
||||
[[nodiscard]] bool IsAnyActiveForTrayMenu() {
|
||||
for (const NSWindow *w in [[NSApplication sharedApplication] windows]) {
|
||||
if (w.isKeyWindow) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
[[nodiscard]] QImage TrayIconBack(bool darkMode) {
|
||||
static const auto WithColor = [](QColor color) {
|
||||
return st::macTrayIcon.instance(color, 100);
|
||||
@ -332,7 +341,7 @@ void Tray::createIcon() {
|
||||
// instead of showing the menu, when the window is not activated.
|
||||
_nativeIcon->clicks(
|
||||
) | rpl::start_with_next([=] {
|
||||
if (Core::App().isActiveForTrayMenu()) {
|
||||
if (IsAnyActiveForTrayMenu()) {
|
||||
_nativeIcon->showMenu(_menu.get());
|
||||
} else {
|
||||
_nativeIcon->deactivateButton();
|
||||
|
Loading…
Reference in New Issue
Block a user