From 28f83f2af4ad555c342f8db1222b7708f36af237 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 1 Jun 2021 14:16:40 +0400 Subject: [PATCH] Show participants Bio when not speaking. --- Telegram/SourceFiles/calls/group/calls_group_members_row.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/calls/group/calls_group_members_row.cpp b/Telegram/SourceFiles/calls/group/calls_group_members_row.cpp index db6c8518dc..21743fd03b 100644 --- a/Telegram/SourceFiles/calls/group/calls_group_members_row.cpp +++ b/Telegram/SourceFiles/calls/group/calls_group_members_row.cpp @@ -615,7 +615,7 @@ void MembersRow::paintComplexStatusText( const auto about = (style == MembersRowStyle::Video) ? QString() : ((_state == State::RaisedHand && !_raisedHandStatus) - || (_state != State::Active && _state != State::RaisedHand)) + || (_state != State::RaisedHand && !_speaking)) ? _aboutText : QString(); if (about.isEmpty()