From ff14ac68ee3f67826fcc36005ffa74103266d46d Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 22 Jun 2021 19:50:26 +0400 Subject: [PATCH] Always show tooltip about the muted microphone. --- Telegram/SourceFiles/calls/group/calls_group_panel.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/calls/group/calls_group_panel.cpp b/Telegram/SourceFiles/calls/group/calls_group_panel.cpp index b4fc1c60e..b86233cee 100644 --- a/Telegram/SourceFiles/calls/group/calls_group_panel.cpp +++ b/Telegram/SourceFiles/calls/group/calls_group_panel.cpp @@ -158,7 +158,8 @@ Panel::Panel(not_null call) : Ui::CallMuteButtonType::ScheduledSilent), })) , _hangup(widget(), st::groupCallHangup) -, _stickedTooltipsShown(Core::App().settings().hiddenGroupCallTooltips()) +, _stickedTooltipsShown(Core::App().settings().hiddenGroupCallTooltips() + & ~StickedTooltip::Microphone) // Always show tooltip about mic. , _toasts(std::make_unique(this)) { _layerBg->setStyleOverrides(&st::groupCallBox, &st::groupCallLayerBox); _layerBg->setHideByBackgroundClick(true);