diff --git a/Telegram/SourceFiles/apiwrap.cpp b/Telegram/SourceFiles/apiwrap.cpp index ef7dccd1d..6776ac1e5 100644 --- a/Telegram/SourceFiles/apiwrap.cpp +++ b/Telegram/SourceFiles/apiwrap.cpp @@ -1219,7 +1219,7 @@ void ApiWrap::saveStickerSets(const Stickers::Order &localOrder, const Stickers: if (writeArchived) Local::writeArchivedStickers(); if (writeCloudRecent) Local::writeRecentStickers(); if (writeFaved) Local::writeFavedStickers(); - _session->data().markStickersUpdated(); + _session->data().notifyStickersUpdated(); if (_stickerSetDisenableRequests.empty()) { stickersSaveOrder(); @@ -1834,7 +1834,7 @@ void ApiWrap::setGroupStickerSet(not_null megagroup, const MTPInpu Expects(megagroup->mgInfo != nullptr); megagroup->mgInfo->stickerSet = set; request(MTPchannels_SetStickers(megagroup->inputChannel, set)).send(); - _session->data().markStickersUpdated(); + _session->data().notifyStickersUpdated(); } void ApiWrap::requestStickers(TimeId now) { @@ -1986,7 +1986,7 @@ void ApiWrap::readFeaturedSets() { MTP_vector(wrappedIds)); request(std::move(requestData)).done([=](const MTPBool &result) { Local::writeFeaturedStickers(); - _session->data().markStickersUpdated(); + _session->data().notifyStickersUpdated(); }).send(); _session->data().setFeaturedStickerSetsUnreadCount(count); diff --git a/Telegram/SourceFiles/app.cpp b/Telegram/SourceFiles/app.cpp index 22bdf6b7e..5de7b9c8f 100644 --- a/Telegram/SourceFiles/app.cpp +++ b/Telegram/SourceFiles/app.cpp @@ -951,7 +951,7 @@ namespace { if (saved.size() > Global::SavedGifsLimit()) saved.pop_back(); Local::writeSavedGifs(); - Auth().data().markSavedGifsUpdated(); + Auth().data().notifySavedGifsUpdated(); Auth().data().setLastSavedGifsUpdate(0); Auth().api().updateStickers(); } @@ -1277,7 +1277,7 @@ namespace { if (Global::started() && !App::quitting() && AuthSession::Exists()) { - Auth().data().markItemRemoved(item); + Auth().data().notifyItemRemoved(item); } } diff --git a/Telegram/SourceFiles/boxes/sticker_set_box.cpp b/Telegram/SourceFiles/boxes/sticker_set_box.cpp index 10dd3696d..c099e9294 100644 --- a/Telegram/SourceFiles/boxes/sticker_set_box.cpp +++ b/Telegram/SourceFiles/boxes/sticker_set_box.cpp @@ -239,7 +239,7 @@ void StickerSetBox::Inner::installDone(const MTPmessages_StickerSetInstallResult Local::writeArchivedStickers(); } Local::writeInstalledStickers(); - Auth().data().markStickersUpdated(); + Auth().data().notifyStickersUpdated(); } _setInstalled.fire_copy(_setId); } diff --git a/Telegram/SourceFiles/chat_helpers/stickers.cpp b/Telegram/SourceFiles/chat_helpers/stickers.cpp index ca521ca90..b5608f32b 100644 --- a/Telegram/SourceFiles/chat_helpers/stickers.cpp +++ b/Telegram/SourceFiles/chat_helpers/stickers.cpp @@ -72,7 +72,7 @@ void ApplyArchivedResult(const MTPDmessages_stickerSetInstallResultArchive &d) { Ui::Toast::Show(toast); // Ui::show(Box(archived), LayerOption::KeepOther); - Auth().data().markStickersUpdated(); + Auth().data().notifyStickersUpdated(); } // For testing: Just apply random subset or your sticker sets as archived. @@ -132,7 +132,7 @@ void InstallLocally(uint64 setId) { Local::writeArchivedStickers(); } } - Auth().data().markStickersUpdated(); + Auth().data().notifyStickersUpdated(); } void UndoInstallLocally(uint64 setId) { @@ -151,7 +151,7 @@ void UndoInstallLocally(uint64 setId) { } Local::writeInstalledStickers(); - Auth().data().markStickersUpdated(); + Auth().data().notifyStickersUpdated(); Ui::show( Box(lang(lng_stickers_not_found)), @@ -234,7 +234,7 @@ void SetIsFaved(not_null document, base::optional document) { sets.erase(it); } Local::writeFavedStickers(); - Auth().data().markStickersUpdated(); + Auth().data().notifyStickersUpdated(); } void SetFaved(not_null document, bool faved) { @@ -374,7 +374,7 @@ void SetsReceived(const QVector &data, int32 hash) { LOG(("API Error: received stickers hash %1 while counted hash is %2").arg(hash).arg(Local::countStickersHash())); } - Auth().data().markStickersUpdated(); + Auth().data().notifyStickersUpdated(); } void SetPackAndEmoji(Set &set, Pack &&pack, const QVector &packs) { @@ -475,7 +475,7 @@ void SpecialSetReceived(uint64 setId, const QString &setTitle, const QVector &data, const QVector &unread, int32 hash) { @@ -575,7 +575,7 @@ void FeaturedSetsReceived(const QVector &data, const QVect Local::writeFeaturedStickers(); - Auth().data().markStickersUpdated(); + Auth().data().notifyStickersUpdated(); } void GifsReceived(const QVector &items, int32 hash) { @@ -598,7 +598,7 @@ void GifsReceived(const QVector &items, int32 hash) { Local::writeSavedGifs(); - Auth().data().markSavedGifsUpdated(); + Auth().data().notifySavedGifsUpdated(); } Pack GetListByEmoji(not_null emoji) { @@ -792,7 +792,7 @@ Set *FeedSetFull(const MTPmessages_StickerSet &data) { } } - Auth().data().markStickersUpdated(); + Auth().data().notifyStickersUpdated(); return set; } diff --git a/Telegram/SourceFiles/data/data_session.cpp b/Telegram/SourceFiles/data/data_session.cpp index c0c16ccd1..972cb7f18 100644 --- a/Telegram/SourceFiles/data/data_session.cpp +++ b/Telegram/SourceFiles/data/data_session.cpp @@ -108,7 +108,7 @@ void Session::animationLoadSettingsChanged() { void Session::notifyPhotoLayoutChanged(not_null photo) { if (const auto i = _photoViews.find(photo); i != end(_photoViews)) { for (const auto view : i->second) { - markViewLayoutChange(view); + notifyViewLayoutChange(view); } } } @@ -118,7 +118,7 @@ void Session::notifyDocumentLayoutChanged( const auto i = _documentViews.find(document); if (i != end(_documentViews)) { for (const auto view : i->second) { - markViewLayoutChange(view); + notifyViewLayoutChange(view); } } if (const auto items = InlineBots::Layout::documentItems()) { @@ -147,27 +147,19 @@ void Session::markMediaRead(not_null document) { } } -void Session::markItemLayoutChange(not_null item) { - _itemLayoutChanges.fire_copy(item); -} - -rpl::producer> Session::itemLayoutChanged() const { - return _itemLayoutChanges.events(); -} - -void Session::markViewLayoutChange(not_null view) { +void Session::notifyViewLayoutChange(not_null view) { _viewLayoutChanges.fire_copy(view); } -rpl::producer> Session::viewLayoutChanged() const { +rpl::producer> Session::viewLayoutChanged() const { return _viewLayoutChanges.events(); } -void Session::markItemIdChange(IdChange event) { +void Session::notifyItemIdChange(IdChange event) { _itemIdChanges.fire_copy(event); - enumerateItemViews(event.item, [](not_null view) { - view->refreshDataId(); - }); + enumerateItemViews( + event.item, + [](not_null view) { view->refreshDataId(); }); } rpl::producer Session::itemIdChanged() const { @@ -222,7 +214,7 @@ rpl::producer> Session::itemPlayInlineRequest() con return _itemPlayInlineRequest.events(); } -void Session::markItemRemoved(not_null item) { +void Session::notifyItemRemoved(not_null item) { _itemRemoved.fire_copy(item); } @@ -230,7 +222,7 @@ rpl::producer> Session::itemRemoved() const { return _itemRemoved.events(); } -void Session::markHistoryUnloaded(not_null history) { +void Session::notifyHistoryUnloaded(not_null history) { _historyUnloaded.fire_copy(history); } @@ -238,7 +230,7 @@ rpl::producer> Session::historyUnloaded() const { return _historyUnloaded.events(); } -void Session::markHistoryCleared(not_null history) { +void Session::notifyHistoryCleared(not_null history) { _historyCleared.fire_copy(history); } @@ -288,7 +280,7 @@ rpl::producer> Session::megagroupParticipantAdded( }); } -void Session::markStickersUpdated() { +void Session::notifyStickersUpdated() { _stickersUpdated.fire({}); } @@ -296,7 +288,7 @@ rpl::producer<> Session::stickersUpdated() const { return _stickersUpdated.events(); } -void Session::markSavedGifsUpdated() { +void Session::notifySavedGifsUpdated() { _savedGifsUpdated.fire({}); } @@ -1107,13 +1099,13 @@ void Session::gameApplyFields( void Session::registerPhotoView( not_null photo, - not_null view) { + not_null view) { _photoViews[photo].insert(view); } void Session::unregisterPhotoView( not_null photo, - not_null view) { + not_null view) { const auto i = _photoViews.find(photo); if (i != _photoViews.end()) { auto &items = i->second; @@ -1125,13 +1117,13 @@ void Session::unregisterPhotoView( void Session::registerDocumentView( not_null document, - not_null view) { + not_null view) { _documentViews[document].insert(view); } void Session::unregisterDocumentView( not_null document, - not_null view) { + not_null view) { const auto i = _documentViews.find(document); if (i != _documentViews.end()) { auto &items = i->second; @@ -1161,13 +1153,13 @@ void Session::unregisterDocumentItem( void Session::registerWebPageView( not_null page, - not_null view) { + not_null view) { _webpageViews[page].insert(view); } void Session::unregisterWebPageView( not_null page, - not_null view) { + not_null view) { const auto i = _webpageViews.find(page); if (i != _webpageViews.end()) { auto &items = i->second; @@ -1197,13 +1189,13 @@ void Session::unregisterWebPageItem( void Session::registerGameView( not_null game, - not_null view) { + not_null view) { _gameViews[game].insert(view); } void Session::unregisterGameView( not_null game, - not_null view) { + not_null view) { const auto i = _gameViews.find(game); if (i != _gameViews.end()) { auto &items = i->second; @@ -1215,7 +1207,7 @@ void Session::unregisterGameView( void Session::registerContactView( UserId contactId, - not_null view) { + not_null view) { if (!contactId) { return; } @@ -1224,7 +1216,7 @@ void Session::registerContactView( void Session::unregisterContactView( UserId contactId, - not_null view) { + not_null view) { if (!contactId) { return; } @@ -1289,7 +1281,7 @@ void Session::unregisterContactItem( void Session::registerAutoplayAnimation( not_null<::Media::Clip::Reader*> reader, - not_null view) { + not_null view) { _autoplayAnimations.emplace(reader, view); } diff --git a/Telegram/SourceFiles/data/data_session.h b/Telegram/SourceFiles/data/data_session.h index ecc8b31ca..af827cf95 100644 --- a/Telegram/SourceFiles/data/data_session.h +++ b/Telegram/SourceFiles/data/data_session.h @@ -61,11 +61,9 @@ public: not_null item; MsgId oldId = 0; }; - void markItemIdChange(IdChange event); + void notifyItemIdChange(IdChange event); rpl::producer itemIdChanged() const; - void markItemLayoutChange(not_null item); - rpl::producer> itemLayoutChanged() const; - void markViewLayoutChange(not_null view); + void notifyViewLayoutChange(not_null view); rpl::producer> viewLayoutChanged() const; void requestItemViewRepaint(not_null item); rpl::producer> itemViewRepaintRequest() const; @@ -79,13 +77,14 @@ public: rpl::producer> itemViewRefreshRequest() const; void requestItemPlayInline(not_null item); rpl::producer> itemPlayInlineRequest() const; - void markItemRemoved(not_null item); - rpl::producer> itemRemoved() const; - void markHistoryUnloaded(not_null history); + void notifyHistoryUnloaded(not_null history); rpl::producer> historyUnloaded() const; - void markHistoryCleared(not_null history); + void notifyItemRemoved(not_null item); + rpl::producer> itemRemoved() const; + void notifyHistoryCleared(not_null history); rpl::producer> historyCleared() const; + using MegagroupParticipant = std::tuple< not_null, not_null>; @@ -102,9 +101,9 @@ public: rpl::producer> megagroupParticipantAdded( not_null channel) const; - void markStickersUpdated(); + void notifyStickersUpdated(); rpl::producer<> stickersUpdated() const; - void markSavedGifsUpdated(); + void notifySavedGifsUpdated(); rpl::producer<> savedGifsUpdated() const; bool stickersUpdateNeeded(TimeMs now) const { @@ -276,16 +275,16 @@ public: void registerPhotoView( not_null photo, - not_null view); + not_null view); void unregisterPhotoView( not_null photo, - not_null view); + not_null view); void registerDocumentView( not_null document, - not_null view); + not_null view); void unregisterDocumentView( not_null document, - not_null view); + not_null view); void registerDocumentItem( not_null document, not_null item); @@ -294,10 +293,10 @@ public: not_null item); void registerWebPageView( not_null page, - not_null view); + not_null view); void unregisterWebPageView( not_null page, - not_null view); + not_null view); void registerWebPageItem( not_null page, not_null item); @@ -306,16 +305,16 @@ public: not_null item); void registerGameView( not_null game, - not_null view); + not_null view); void unregisterGameView( not_null game, - not_null view); + not_null view); void registerContactView( UserId contactId, - not_null view); + not_null view); void unregisterContactView( UserId contactId, - not_null view); + not_null view); void registerContactItem( UserId contactId, not_null item); @@ -324,7 +323,7 @@ public: not_null item); void registerAutoplayAnimation( not_null<::Media::Clip::Reader*> reader, - not_null view); + not_null view); void unregisterAutoplayAnimation( not_null<::Media::Clip::Reader*> reader); @@ -439,7 +438,6 @@ private: base::Observable _pendingHistoryResize; base::Observable _queryItemVisibility; rpl::event_stream _itemIdChanges; - rpl::event_stream> _itemLayoutChanges; rpl::event_stream> _viewLayoutChanges; rpl::event_stream> _itemViewRepaintRequest; rpl::event_stream> _viewRepaintRequest; @@ -472,7 +470,7 @@ private: std::unique_ptr> _photos; std::map< not_null, - base::flat_set>> _photoViews; + base::flat_set>> _photoViews; std::unordered_map< DocumentId, std::unique_ptr> _documents; @@ -481,7 +479,7 @@ private: base::flat_set>> _documentItems; std::map< not_null, - base::flat_set>> _documentViews; + base::flat_set>> _documentViews; std::unordered_map< WebPageId, std::unique_ptr> _webpages; @@ -490,22 +488,22 @@ private: base::flat_set>> _webpageItems; std::map< not_null, - base::flat_set>> _webpageViews; + base::flat_set>> _webpageViews; std::unordered_map< GameId, std::unique_ptr> _games; std::map< not_null, - base::flat_set>> _gameViews; + base::flat_set>> _gameViews; std::map< UserId, base::flat_set>> _contactItems; std::map< UserId, - base::flat_set>> _contactViews; + base::flat_set>> _contactViews; base::flat_map< not_null<::Media::Clip::Reader*>, - not_null> _autoplayAnimations; + not_null> _autoplayAnimations; base::flat_set> _webpagesUpdated; base::flat_set> _gamesUpdated; @@ -515,7 +513,7 @@ private: Groups _groups; std::map< not_null, - std::vector>> _views; + std::vector>> _views; MessageIdsList _mimeForwardIds; diff --git a/Telegram/SourceFiles/history/history.cpp b/Telegram/SourceFiles/history/history.cpp index 46c82848f..607624c03 100644 --- a/Telegram/SourceFiles/history/history.cpp +++ b/Telegram/SourceFiles/history/history.cpp @@ -2424,12 +2424,12 @@ void History::clear(bool leaveItems) { forgetScrollState(); } if (leaveItems) { - Auth().data().markHistoryUnloaded(this); + Auth().data().notifyHistoryUnloaded(this); } else { setLastMessage(nullptr); notifies.clear(); Auth().storage().remove(Storage::SharedMediaRemoveAll(peer->id)); - Auth().data().markHistoryCleared(this); + Auth().data().notifyHistoryCleared(this); } clearBlocks(leaveItems); if (leaveItems) { diff --git a/Telegram/SourceFiles/history/history_item.cpp b/Telegram/SourceFiles/history/history_item.cpp index ba45ddcc5..280d88287 100644 --- a/Telegram/SourceFiles/history/history_item.cpp +++ b/Telegram/SourceFiles/history/history_item.cpp @@ -338,7 +338,7 @@ void HistoryItem::setRealId(MsgId newId) { } } - Auth().data().markItemIdChange({ this, oldId }); + Auth().data().notifyItemIdChange({ this, oldId }); Auth().data().requestItemViewRepaint(this); } @@ -630,51 +630,6 @@ bool HistoryItem::isEmpty() const { && !Has(); } -void HistoryItem::clipCallback(Media::Clip::Notification notification) { - using namespace Media::Clip; - - auto media = this->media(); - if (!media) { - return; - } - - // #TODO GIFs - //auto reader = media->getClipReader(); - //if (!reader) { - // return; - //} - - //switch (notification) { - //case NotificationReinit: { - // auto stopped = false; - // if (reader->autoPausedGif()) { - // auto amVisible = false; - // Auth().data().queryItemVisibility().notify({ this, &amVisible }, true); - // if (!amVisible) { // stop animation if it is not visible - // media->stopInline(); - // if (auto document = media->getDocument()) { // forget data from memory - // document->forget(); - // } - // stopped = true; - // } - // } else if (reader->mode() == Media::Clip::Reader::Mode::Video && reader->state() == Media::Clip::State::Finished) { - // // Stop finished video message. - // media->stopInline(); - // } - // if (!stopped) { - // Auth().data().requestItemViewResize(this); - // Auth().data().markItemLayoutChange(this); - // } - //} break; - - //case NotificationRepaint: { - // if (!reader->currentDisplayed()) { - // Auth().data().requestItemViewRepaint(this); - // } - //} break; - //} -} - void HistoryItem::audioTrackUpdated() { auto media = this->media(); if (!media) { diff --git a/Telegram/SourceFiles/history/history_item.h b/Telegram/SourceFiles/history/history_item.h index 09ab8720f..6d208d35b 100644 --- a/Telegram/SourceFiles/history/history_item.h +++ b/Telegram/SourceFiles/history/history_item.h @@ -265,7 +265,6 @@ public: MessageGroupId groupId() const; - void clipCallback(Media::Clip::Notification notification); void audioTrackUpdated(); HistoryItem *previousItem() const; diff --git a/Telegram/SourceFiles/history/history_media_types.cpp b/Telegram/SourceFiles/history/history_media_types.cpp index fb75b3a38..da72f82f6 100644 --- a/Telegram/SourceFiles/history/history_media_types.cpp +++ b/Telegram/SourceFiles/history/history_media_types.cpp @@ -2687,7 +2687,7 @@ bool HistoryGif::playInline(bool autoplay) { : Mode::Gif; setClipReader(Media::Clip::MakeReader(_data, _parent->data()->fullId(), [this](Media::Clip::Notification notification) { // #TODO GIFs - _parent->data()->clipCallback(notification); + _parent->clipCallback(notification); }, mode)); if (mode == Mode::Video) { _roundPlayback = std::make_unique(); @@ -2717,7 +2717,7 @@ void HistoryGif::stopInline() { clearClipReader(); Auth().data().requestViewResize(_parent); - Auth().data().markViewLayoutChange(_parent); + Auth().data().notifyViewLayoutChange(_parent); } void HistoryGif::setClipReader(Media::Clip::ReaderPointer gif) { diff --git a/Telegram/SourceFiles/history/history_widget.cpp b/Telegram/SourceFiles/history/history_widget.cpp index 0965a7f71..25292f21a 100644 --- a/Telegram/SourceFiles/history/history_widget.cpp +++ b/Telegram/SourceFiles/history/history_widget.cpp @@ -646,10 +646,10 @@ HistoryWidget::HistoryWidget(QWidget *parent, not_null cont } } }); - Auth().data().itemLayoutChanged( - ) | rpl::start_with_next([this](auto item) { + Auth().data().viewLayoutChanged( + ) | rpl::start_with_next([this](auto view) { if (_peer && _list) { - if (const auto view = item->mainView()) { + if (view == view->data()->mainView()) { if (view->isUnderCursor()) { _list->onUpdateSelected(); } @@ -909,7 +909,7 @@ void HistoryWidget::start() { updateStickersByEmoji(); }, lifetime()); updateRecentStickers(); - Auth().data().markSavedGifsUpdated(); + Auth().data().notifySavedGifsUpdated(); subscribe(Auth().api().fullPeerUpdated(), [this](PeerData *peer) { fullPeerUpdated(peer); }); diff --git a/Telegram/SourceFiles/history/view/history_view_element.cpp b/Telegram/SourceFiles/history/view/history_view_element.cpp index b4225ef4a..c8b761a6a 100644 --- a/Telegram/SourceFiles/history/view/history_view_element.cpp +++ b/Telegram/SourceFiles/history/view/history_view_element.cpp @@ -7,6 +7,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL */ #include "history/view/history_view_element.h" +#include "media/media_clip_reader.h" #include "history/history_item_components.h" #include "history/history_item.h" #include "history/history_media.h" @@ -260,6 +261,52 @@ void Element::nextInBlocksChanged() { setAttachToNext(false); } +void Element::clipCallback(Media::Clip::Notification notification) { + using namespace Media::Clip; + + const auto media = this->media(); + if (!media) { + return; + } + + const auto reader = media->getClipReader(); + if (!reader) { + return; + } + + switch (notification) { + case NotificationReinit: { + auto stopped = false; + if (reader->autoPausedGif()) { + auto amVisible = false; + Auth().data().queryItemVisibility().notify({ data(), &amVisible }, true); + if (!amVisible) { // stop animation if it is not visible + media->stopInline(); + if (const auto document = media->getDocument()) { + document->forget(); + } + stopped = true; + } + } else if (reader->mode() == Reader::Mode::Video + && reader->state() == State::Finished) { + // Stop finished video message. + media->stopInline(); + } + if (!stopped) { + Auth().data().requestViewResize(this); + Auth().data().notifyViewLayoutChange(this); + } + } break; + + case NotificationRepaint: { + if (!reader->currentDisplayed()) { + Auth().data().requestViewRepaint(this); + } + } break; + } +} + + void Element::refreshDataId() { if (const auto media = this->media()) { media->refreshParentId(data()); diff --git a/Telegram/SourceFiles/history/view/history_view_element.h b/Telegram/SourceFiles/history/view/history_view_element.h index 4545add3f..52282d33d 100644 --- a/Telegram/SourceFiles/history/view/history_view_element.h +++ b/Telegram/SourceFiles/history/view/history_view_element.h @@ -186,6 +186,8 @@ public: void previousInBlocksChanged(); void nextInBlocksChanged(); + void clipCallback(Media::Clip::Notification notification); + virtual ~Element(); protected: diff --git a/Telegram/SourceFiles/info/media/info_media_list_widget.cpp b/Telegram/SourceFiles/info/media/info_media_list_widget.cpp index 73fbc1c2e..c92f183d9 100644 --- a/Telegram/SourceFiles/info/media/info_media_list_widget.cpp +++ b/Telegram/SourceFiles/info/media/info_media_list_widget.cpp @@ -561,10 +561,10 @@ void ListWidget::start() { ObservableViewer( Auth().downloader().taskFinished() ) | rpl::start_with_next([this] { update(); }, lifetime()); - Auth().data().itemLayoutChanged( - ) | rpl::start_with_next([this](auto item) { - itemLayoutChanged(item); - }, lifetime()); + //Auth().data().itemLayoutChanged( // #TODO + //) | rpl::start_with_next([this](auto item) { + // itemLayoutChanged(item); + //}, lifetime()); Auth().data().itemRemoved( ) | rpl::start_with_next([this](auto item) { itemRemoved(item); diff --git a/Telegram/SourceFiles/inline_bots/inline_bot_layout_internal.cpp b/Telegram/SourceFiles/inline_bots/inline_bot_layout_internal.cpp index d78e70f0b..3b73bec0c 100644 --- a/Telegram/SourceFiles/inline_bots/inline_bot_layout_internal.cpp +++ b/Telegram/SourceFiles/inline_bots/inline_bot_layout_internal.cpp @@ -120,7 +120,7 @@ void DeleteSavedGifClickHandler::onClickImpl() const { MTP::send(MTPmessages_SaveGif(_data->mtpInput(), MTP_bool(true))); } - Auth().data().markSavedGifsUpdated(); + Auth().data().notifySavedGifsUpdated(); } int Gif::resizeGetHeight(int width) { diff --git a/Telegram/SourceFiles/mainwidget.cpp b/Telegram/SourceFiles/mainwidget.cpp index c6c3dcc17..8615d13b4 100644 --- a/Telegram/SourceFiles/mainwidget.cpp +++ b/Telegram/SourceFiles/mainwidget.cpp @@ -5366,7 +5366,7 @@ void MainWidget::feedUpdate(const MTPUpdate &update) { } Local::writeInstalledStickers(); if (writeArchived) Local::writeArchivedStickers(); - Auth().data().markStickersUpdated(); + Auth().data().notifyStickersUpdated(); } } } @@ -5390,7 +5390,7 @@ void MainWidget::feedUpdate(const MTPUpdate &update) { } else { Auth().data().stickerSetsOrderRef() = std::move(result); Local::writeInstalledStickers(); - Auth().data().markStickersUpdated(); + Auth().data().notifyStickersUpdated(); } } } break; diff --git a/Telegram/SourceFiles/media/player/media_player_float.cpp b/Telegram/SourceFiles/media/player/media_player_float.cpp index 60d230827..c7602f6b2 100644 --- a/Telegram/SourceFiles/media/player/media_player_float.cpp +++ b/Telegram/SourceFiles/media/player/media_player_float.cpp @@ -13,6 +13,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL #include "data/data_media_types.h" #include "history/history_media.h" #include "history/history_item.h" +#include "history/view/history_view_element.h" #include "media/media_clip_reader.h" #include "media/view/media_clip_playback.h" #include "media/media_audio.h" @@ -46,7 +47,10 @@ Float::Float( prepareShadow(); rpl::merge( - Auth().data().itemLayoutChanged(), + //Auth().data().viewLayoutChanged( + //) | rpl::map( + // [](auto view) { return view->data(); } + //), Auth().data().itemViewRepaintRequest() ) | rpl::start_with_next([this](auto item) { if (_item == item) {