From 5a1ec3c9e07b6374984d2c752689d24c25e1f43c Mon Sep 17 00:00:00 2001 From: John Preston Date: Sun, 23 Jul 2017 12:17:23 +0300 Subject: [PATCH] Fix display of Search members button in profile. --- Telegram/SourceFiles/profile/profile_block_actions.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Telegram/SourceFiles/profile/profile_block_actions.cpp b/Telegram/SourceFiles/profile/profile_block_actions.cpp index 29acc129b..162da6c12 100644 --- a/Telegram/SourceFiles/profile/profile_block_actions.cpp +++ b/Telegram/SourceFiles/profile/profile_block_actions.cpp @@ -63,6 +63,12 @@ void ActionsWidget::notifyPeerUpdated(const Notify::PeerUpdate &update) { return true; } } + if (update.flags & UpdateFlag::MembersChanged) { + if (peer()->isMegagroup()) { + // Search members button could change. + return true; + } + } return false; }; if (needFullRefresh()) {