diff --git a/Telegram/SourceFiles/boxes/peers/edit_participants_box.cpp b/Telegram/SourceFiles/boxes/peers/edit_participants_box.cpp index d1b6d7a2d..bdd3bdc24 100644 --- a/Telegram/SourceFiles/boxes/peers/edit_participants_box.cpp +++ b/Telegram/SourceFiles/boxes/peers/edit_participants_box.cpp @@ -1700,8 +1700,10 @@ base::unique_qptr ParticipantsBoxController::rowContextMenu( : participant->isBroadcast() ? tr::lng_context_view_channel : tr::lng_context_view_group)(tr::now), - crl::guard(this, [=] { - _navigation->showPeerInfo(participant); }), + crl::guard(this, [=, this] { + _navigation->parentController()->show( + PrepareShortInfoBox(participant, _navigation)); + }), (participant->isUser() ? &st::menuIconProfile : &st::menuIconInfo));