mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-04-01 23:00:58 +00:00
parent
766e7dadb1
commit
3fbb643d51
Telegram/SourceFiles
@ -59,7 +59,7 @@ void StickerSetBox::prepare() {
|
|||||||
_inner->setInstalled()
|
_inner->setInstalled()
|
||||||
| rpl::start([this](auto &&setId) {
|
| rpl::start([this](auto &&setId) {
|
||||||
Auth().api().stickerSetInstalled(setId);
|
Auth().api().stickerSetInstalled(setId);
|
||||||
closeBox();
|
this->closeBox();
|
||||||
}, lifetime());
|
}, lifetime());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -64,7 +64,7 @@ TabbedPanel::TabbedPanel(
|
|||||||
});
|
});
|
||||||
_selector->showRequests()
|
_selector->showRequests()
|
||||||
| rpl::start([this](auto&&) {
|
| rpl::start([this](auto&&) {
|
||||||
showFromSelector();
|
this->showFromSelector();
|
||||||
}, lifetime());
|
}, lifetime());
|
||||||
|
|
||||||
resize(QRect(0, 0, st::emojiPanWidth, st::emojiPanMaxHeight).marginsAdded(innerPadding()).size());
|
resize(QRect(0, 0, st::emojiPanWidth, st::emojiPanMaxHeight).marginsAdded(innerPadding()).size());
|
||||||
|
@ -88,7 +88,7 @@ object_ptr<TopBar> NarrowWrap::createTopBar() {
|
|||||||
result->enableBackButton(true);
|
result->enableBackButton(true);
|
||||||
result->backRequest()
|
result->backRequest()
|
||||||
| rpl::start([this](auto&&) {
|
| rpl::start([this](auto&&) {
|
||||||
controller()->showBackFromStack();
|
this->controller()->showBackFromStack();
|
||||||
}, result->lifetime());
|
}, result->lifetime());
|
||||||
result->setTitle(TitleValue(
|
result->setTitle(TitleValue(
|
||||||
_content->section(),
|
_content->section(),
|
||||||
|
@ -323,16 +323,16 @@ void CoverLine::initViewers() {
|
|||||||
using Flag = Notify::PeerUpdate::Flag;
|
using Flag = Notify::PeerUpdate::Flag;
|
||||||
PeerUpdateViewer(_peer, Flag::PhotoChanged)
|
PeerUpdateViewer(_peer, Flag::PhotoChanged)
|
||||||
| rpl::start(
|
| rpl::start(
|
||||||
[this](auto&&) { refreshUserpicLink(); },
|
[this](auto&&) { this->refreshUserpicLink(); },
|
||||||
_lifetime);
|
_lifetime);
|
||||||
PeerUpdateViewer(_peer, Flag::NameChanged)
|
PeerUpdateViewer(_peer, Flag::NameChanged)
|
||||||
| rpl::start(
|
| rpl::start(
|
||||||
[this](auto&&) { refreshNameText(); },
|
[this](auto&&) { this->refreshNameText(); },
|
||||||
_lifetime);
|
_lifetime);
|
||||||
PeerUpdateViewer(_peer,
|
PeerUpdateViewer(_peer,
|
||||||
Flag::UserOnlineChanged | Flag::MembersChanged)
|
Flag::UserOnlineChanged | Flag::MembersChanged)
|
||||||
| rpl::start(
|
| rpl::start(
|
||||||
[this](auto&&) { refreshStatusText(); },
|
[this](auto&&) { this->refreshStatusText(); },
|
||||||
_lifetime);
|
_lifetime);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -59,8 +59,8 @@ void TopBar::pushButton(object_ptr<Ui::RpWidget> button) {
|
|||||||
auto weak = Ui::AttachParentChild(this, button);
|
auto weak = Ui::AttachParentChild(this, button);
|
||||||
_buttons.push_back(std::move(button));
|
_buttons.push_back(std::move(button));
|
||||||
weak->widthValue()
|
weak->widthValue()
|
||||||
| rpl::start([this](auto) {
|
| rpl::start([this](auto&&) {
|
||||||
updateControlsGeometry(width());
|
this->updateControlsGeometry(this->width());
|
||||||
}, _lifetime);
|
}, _lifetime);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user