From c80da25450537f37366e09ee5f3bcbe6099e4dc8 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 22 Dec 2020 19:38:02 +0400 Subject: [PATCH] Show better tooltip for force muted in voice chat. --- Telegram/SourceFiles/calls/calls_top_bar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/calls/calls_top_bar.cpp b/Telegram/SourceFiles/calls/calls_top_bar.cpp index deade4dfba..e5ab997656 100644 --- a/Telegram/SourceFiles/calls/calls_top_bar.cpp +++ b/Telegram/SourceFiles/calls/calls_top_bar.cpp @@ -267,7 +267,7 @@ void TopBar::initControls() { call->setMuted(!call->muted()); } else if (const auto group = _groupCall.get()) { if (group->muted() == MuteState::ForceMuted) { - Ui::Toast::Show(tr::lng_group_call_force_muted(tr::now)); + Ui::Toast::Show(tr::lng_group_call_force_muted_sub(tr::now)); } else { group->setMuted((group->muted() == MuteState::Muted) ? MuteState::Active