diff --git a/Telegram/SourceFiles/info/info_controller.cpp b/Telegram/SourceFiles/info/info_controller.cpp index 525323c830..96903e6b42 100644 --- a/Telegram/SourceFiles/info/info_controller.cpp +++ b/Telegram/SourceFiles/info/info_controller.cpp @@ -184,13 +184,17 @@ void Controller::setupMigrationViewer() { }) | rpl::start_with_next([=] { const auto window = parentController(); const auto section = _section; + auto params = Window::SectionShow( + Window::SectionShow::Way::Backward, + anim::type::instant, + anim::activation::background); + if (wrap() == Wrap::Side) { + params.thirdColumn = true; + } InvokeQueued(_widget, [=] { window->showSection( std::make_shared(peer, section), - Window::SectionShow( - Window::SectionShow::Way::Backward, - anim::type::instant, - anim::activation::background)); + params); }); }, lifetime()); }