From ae25538706c42e9a34c8402c9f4ba64cbdedda44 Mon Sep 17 00:00:00 2001 From: 23rd <23rd@vivaldi.net> Date: Sun, 17 Mar 2019 11:14:58 +0300 Subject: [PATCH] Added opening of EditPeerInfoBox in new way. --- Telegram/SourceFiles/window/window_peer_menu.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Telegram/SourceFiles/window/window_peer_menu.cpp b/Telegram/SourceFiles/window/window_peer_menu.cpp index 2dc85e782..917ecb7c3 100644 --- a/Telegram/SourceFiles/window/window_peer_menu.cpp +++ b/Telegram/SourceFiles/window/window_peer_menu.cpp @@ -15,7 +15,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL #include "boxes/create_poll_box.h" #include "boxes/peers/add_participants_box.h" #include "boxes/peers/manage_peer_box.h" -#include "boxes/peers/edit_peer_info_box.h" #include "ui/toast/toast.h" #include "auth_session.h" #include "apiwrap.h" @@ -358,7 +357,7 @@ void Filler::addChatActions(not_null chat) { if (ManagePeerBox::Available(chat)) { const auto text = lang(lng_manage_group_title); _addAction(text, [=] { - Ui::show(Box(chat)); + App::wnd()->controller()->showEditPeerBox(chat); }); } if (chat->canAddMembers()) { @@ -402,7 +401,7 @@ void Filler::addChannelActions(not_null channel) { ? lng_manage_group_title : lng_manage_channel_title); _addAction(text, [channel] { - Ui::show(Box(channel)); + App::wnd()->controller()->showEditPeerBox(channel); }); } if (channel->canAddMembers()) {